Class: DocuSign_eSign::ListItemsOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/docusign_esign/api/folders_api.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#from_dateObject

Only return items on or after this date. If no value is provided, the default search is the previous 30 days.



39
40
41
# File 'lib/docusign_esign/api/folders_api.rb', line 39

def from_date
  @from_date
end

#include_itemsObject

Returns the value of attribute include_items.



42
43
44
# File 'lib/docusign_esign/api/folders_api.rb', line 42

def include_items
  @include_items
end

#owner_emailObject

The email of the folder owner.



45
46
47
# File 'lib/docusign_esign/api/folders_api.rb', line 45

def owner_email
  @owner_email
end

#owner_nameObject

The name of the folder owner.



48
49
50
# File 'lib/docusign_esign/api/folders_api.rb', line 48

def owner_name
  @owner_name
end

#search_textObject

The search text used to search the items of the envelope. The search looks at recipient names and emails, envelope custom fields, sender name, and subject.



51
52
53
# File 'lib/docusign_esign/api/folders_api.rb', line 51

def search_text
  @search_text
end

#start_positionObject

The position of the folder items to return. This is used for repeated calls, when the number of envelopes returned is too much for one return (calls return 100 envelopes at a time). The default value is 0.



54
55
56
# File 'lib/docusign_esign/api/folders_api.rb', line 54

def start_position
  @start_position
end

#statusObject

The current status of the envelope. If no value is provided, the default search is all/any status.



57
58
59
# File 'lib/docusign_esign/api/folders_api.rb', line 57

def status
  @status
end

#to_dateObject

Only return items up to this date. If no value is provided, the default search is to the current date.



60
61
62
# File 'lib/docusign_esign/api/folders_api.rb', line 60

def to_date
  @to_date
end

Class Method Details

.defaultObject



62
63
64
# File 'lib/docusign_esign/api/folders_api.rb', line 62

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