Class: DocuSign_Rooms::GetRoomTemplatesOptions

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#countObject

Number of room templates to return. Defaults to the maximum which is 100.



27
28
29
# File 'lib/docusign_rooms/api/room_templates_api.rb', line 27

def count
  @count
end

#office_idObject

Get all room templates you have access to for this office. Response includes Company and Region level templates. If onlyAssignable is true, and no officeId is provided, user’s default office is assumed.



18
19
20
# File 'lib/docusign_rooms/api/room_templates_api.rb', line 18

def office_id
  @office_id
end

#only_assignableObject

Get list of templates you have access to. Default value false.



21
22
23
# File 'lib/docusign_rooms/api/room_templates_api.rb', line 21

def only_assignable
  @only_assignable
end

#only_enabledObject

When set to true, only returns room templates that are not disabled.



24
25
26
# File 'lib/docusign_rooms/api/room_templates_api.rb', line 24

def only_enabled
  @only_enabled
end

#start_positionObject

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



30
31
32
# File 'lib/docusign_rooms/api/room_templates_api.rb', line 30

def start_position
  @start_position
end

Class Method Details

.defaultObject



32
33
34
# File 'lib/docusign_rooms/api/room_templates_api.rb', line 32

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