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.



37
38
39
# File 'lib/docusign_esign/api/folders_api.rb', line 37

def from_date
  @from_date
end

#owner_emailObject

The email of the folder owner.



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

def owner_email
  @owner_email
end

#owner_nameObject

The name of the folder owner.



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

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.



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

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.



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

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.



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

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.



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

def to_date
  @to_date
end

Class Method Details

.defaultObject



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

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