Class: DocuSign_Rooms::GetRoomsOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/docusign_rooms/api/rooms_api.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#countObject

Number of rooms to return. Defaults to the maximum which is 100.



75
76
77
# File 'lib/docusign_rooms/api/rooms_api.rb', line 75

def count
  @count
end

#field_data_changed_end_dateObject

Fields-data changed end DateTime in UTC. Valid formats: yyyy-mm-dd hh:mm:ss or yyyy/mm/dd hh:mm:ss -Time is optional and will default to 00:00:00.



90
91
92
# File 'lib/docusign_rooms/api/rooms_api.rb', line 90

def field_data_changed_end_date
  @field_data_changed_end_date
end

#field_data_changed_start_dateObject

Fields data changed start datetime in UTC. Valid formats: yyyy-mm-dd hh:mm:ss or yyyy/mm/dd hh:mm:ss -Time is optional and will default to 00:00:00.



87
88
89
# File 'lib/docusign_rooms/api/rooms_api.rb', line 87

def field_data_changed_start_date
  @field_data_changed_start_date
end

#office_idObject

Only return rooms in this office.



84
85
86
# File 'lib/docusign_rooms/api/rooms_api.rb', line 84

def office_id
  @office_id
end

#room_closed_end_dateObject

Room closed end datetime in UTC. Valid formats: yyyy-mm-dd hh:mm:ss or yyyy/mm/dd hh:mm:ss -Time is optional and will default to 00:00:00.



96
97
98
# File 'lib/docusign_rooms/api/rooms_api.rb', line 96

def room_closed_end_date
  @room_closed_end_date
end

#room_closed_start_dateObject

Room closed start datetime in UTC. Valid formats: yyyy-mm-dd hh:mm:ss or yyyy/mm/dd hh:mm:ss -Time is optional and will default to 00:00:00.



93
94
95
# File 'lib/docusign_rooms/api/rooms_api.rb', line 93

def room_closed_start_date
  @room_closed_start_date
end

#room_statusObject

Status of the rooms to return. Defaults to "Active".



81
82
83
# File 'lib/docusign_rooms/api/rooms_api.rb', line 81

def room_status
  @room_status
end

#start_positionObject

Position of the first item in the total results. Defaults to 0.



78
79
80
# File 'lib/docusign_rooms/api/rooms_api.rb', line 78

def start_position
  @start_position
end

Class Method Details

.defaultObject



98
99
100
# File 'lib/docusign_rooms/api/rooms_api.rb', line 98

def self.default
  @@default ||= GetRoomsOptions.new
end