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.
63 64 65 |
# File 'lib/docusign_esign/api/folders_api.rb', line 63 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.
66 67 68 |
# File 'lib/docusign_esign/api/folders_api.rb', line 66 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.
69 70 71 |
# File 'lib/docusign_esign/api/folders_api.rb', line 69 def from_date @from_date end |
#include_recipients ⇒ Object
When set to true, the recipient information is returned in the response.
72 73 74 |
# File 'lib/docusign_esign/api/folders_api.rb', line 72 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.
75 76 77 |
# File 'lib/docusign_esign/api/folders_api.rb', line 75 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`.
78 79 80 |
# File 'lib/docusign_esign/api/folders_api.rb', line 78 def order_by @order_by end |
#start_position ⇒ Object
Specifies the the starting location in the result set of the items that are returned.
81 82 83 |
# File 'lib/docusign_esign/api/folders_api.rb', line 81 def start_position @start_position end |
#to_date ⇒ Object
Specifies the end of the date range to return.
84 85 86 |
# File 'lib/docusign_esign/api/folders_api.rb', line 84 def to_date @to_date end |
Class Method Details
.default ⇒ Object
86 87 88 |
# File 'lib/docusign_esign/api/folders_api.rb', line 86 def self.default @@default ||= SearchOptions.new end |