Class: DocuSign_Rooms::GetRoomsOptions
- Inherits:
-
Object
- Object
- DocuSign_Rooms::GetRoomsOptions
- Defined in:
- lib/docusign_rooms/api/rooms_api.rb
Instance Attribute Summary collapse
-
#count ⇒ Object
Number of rooms to return.
-
#field_data_changed_end_date ⇒ Object
Fields-data changed end DateTime in UTC.
-
#field_data_changed_start_date ⇒ Object
Fields data changed start datetime in UTC.
-
#office_id ⇒ Object
Only return rooms in this office.
-
#room_closed_end_date ⇒ Object
Room closed end datetime in UTC.
-
#room_closed_start_date ⇒ Object
Room closed start datetime in UTC.
-
#room_status ⇒ Object
Status of the rooms to return.
-
#start_position ⇒ Object
Position of the first item in the total results.
Class Method Summary collapse
Instance Attribute Details
#count ⇒ Object
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_date ⇒ Object
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_date ⇒ Object
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_id ⇒ Object
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_date ⇒ Object
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_date ⇒ Object
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_status ⇒ Object
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_position ⇒ Object
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
.default ⇒ Object
98 99 100 |
# File 'lib/docusign_rooms/api/rooms_api.rb', line 98 def self.default @@default ||= GetRoomsOptions.new end |