Class: DocuSign_eSign::SearchOptions
- Inherits:
-
Object
- Object
- DocuSign_eSign::SearchOptions
- Defined in:
- lib/docusign_esign/api/folders_api.rb
Instance Attribute Summary collapse
-
#all ⇒ Object
Specifies that all envelopes that match the criteria are returned.
-
#count ⇒ Object
Specifies the number of records returned in the cache.
-
#from_date ⇒ Object
Specifies the start of the date range to return.
-
#include_recipients ⇒ Object
When set to true, the recipient information is returned in the response.
-
#order ⇒ Object
Specifies the order in which the list is returned.
-
#order_by ⇒ Object
Specifies the property used to sort the list.
-
#start_position ⇒ Object
Specifies the the starting location in the result set of the items that are returned.
-
#to_date ⇒ Object
Specifies the end of the date range to return.
Class Method Summary collapse
Instance Attribute Details
#all ⇒ Object
Specifies that all envelopes that match the criteria are returned.
75 76 77 |
# File 'lib/docusign_esign/api/folders_api.rb', line 75 def all @all end |
#count ⇒ Object
Specifies the number of records returned in the cache. The number must be greater than 0 and less than or equal to 100.
78 79 80 |
# File 'lib/docusign_esign/api/folders_api.rb', line 78 def count @count end |
#from_date ⇒ Object
Specifies the start of the date range to return. If no value is provided, the default search is the previous 30 days.
81 82 83 |
# File 'lib/docusign_esign/api/folders_api.rb', line 81 def from_date @from_date end |
#include_recipients ⇒ Object
When set to true, the recipient information is returned in the response.
84 85 86 |
# File 'lib/docusign_esign/api/folders_api.rb', line 84 def include_recipients @include_recipients end |
#order ⇒ Object
Specifies the order in which the list is returned. Valid values are: ‘asc` for ascending order, and `desc` for descending order.
87 88 89 |
# File 'lib/docusign_esign/api/folders_api.rb', line 87 def order @order end |
#order_by ⇒ Object
Specifies the property used to sort the list. Valid values are: ‘action_required`, `created`, `completed`, `sent`, `signer_list`, `status`, or `subject`.
90 91 92 |
# File 'lib/docusign_esign/api/folders_api.rb', line 90 def order_by @order_by end |
#start_position ⇒ Object
Specifies the the starting location in the result set of the items that are returned.
93 94 95 |
# File 'lib/docusign_esign/api/folders_api.rb', line 93 def start_position @start_position end |
#to_date ⇒ Object
Specifies the end of the date range to return.
96 97 98 |
# File 'lib/docusign_esign/api/folders_api.rb', line 96 def to_date @to_date end |
Class Method Details
.default ⇒ Object
98 99 100 |
# File 'lib/docusign_esign/api/folders_api.rb', line 98 def self.default @@default ||= SearchOptions.new end |