signrequest_client 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (188) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/Gemfile.lock +69 -0
  4. data/LICENSE +21 -0
  5. data/README.md +122 -0
  6. data/Rakefile +9 -0
  7. data/docs/ApiTokensApi.md +226 -0
  8. data/docs/AuthToken.md +13 -0
  9. data/docs/Document.md +33 -0
  10. data/docs/DocumentAttachment.md +15 -0
  11. data/docs/DocumentAttachmentsApi.md +179 -0
  12. data/docs/DocumentSearch.md +22 -0
  13. data/docs/DocumentSignerTemplateConf.md +14 -0
  14. data/docs/DocumentsApi.md +301 -0
  15. data/docs/DocumentsSearchApi.md +119 -0
  16. data/docs/Event.md +17 -0
  17. data/docs/EventsApi.md +145 -0
  18. data/docs/FileFromSf.md +9 -0
  19. data/docs/InlineDocumentSignerIntegrationData.md +9 -0
  20. data/docs/InlineIntegrationData.md +9 -0
  21. data/docs/InlinePrefillTags.md +11 -0
  22. data/docs/InlineResponse200.md +11 -0
  23. data/docs/InlineResponse2001.md +11 -0
  24. data/docs/InlineResponse2002.md +11 -0
  25. data/docs/InlineResponse2003.md +11 -0
  26. data/docs/InlineResponse2004.md +11 -0
  27. data/docs/InlineResponse2005.md +11 -0
  28. data/docs/InlineResponse2006.md +11 -0
  29. data/docs/InlineResponse2007.md +11 -0
  30. data/docs/InlineResponse2008.md +11 -0
  31. data/docs/InlineResponse2009.md +11 -0
  32. data/docs/InlineSignRequest.md +25 -0
  33. data/docs/InlineTeam.md +10 -0
  34. data/docs/InlineTeamMember.md +13 -0
  35. data/docs/InviteMember.md +10 -0
  36. data/docs/Placeholder.md +15 -0
  37. data/docs/RequiredAttachment.md +9 -0
  38. data/docs/SignRequest.md +29 -0
  39. data/docs/SignRequestQuickCreate.md +42 -0
  40. data/docs/Signer.md +40 -0
  41. data/docs/SignerAttachment.md +11 -0
  42. data/docs/SignerInputs.md +14 -0
  43. data/docs/SigningLog.md +9 -0
  44. data/docs/SignrequestQuickCreateApi.md +62 -0
  45. data/docs/SignrequestsApi.md +291 -0
  46. data/docs/Team.md +15 -0
  47. data/docs/TeamMember.md +14 -0
  48. data/docs/TeamMembersApi.md +131 -0
  49. data/docs/TeamsApi.md +344 -0
  50. data/docs/Template.md +14 -0
  51. data/docs/TemplatesApi.md +119 -0
  52. data/docs/User.md +11 -0
  53. data/docs/WebhookSubscription.md +15 -0
  54. data/docs/WebhooksApi.md +340 -0
  55. data/git_push.sh +55 -0
  56. data/lib/signrequest_client/api/api_tokens_api.rb +242 -0
  57. data/lib/signrequest_client/api/document_attachments_api.rb +197 -0
  58. data/lib/signrequest_client/api/documents_api.rb +330 -0
  59. data/lib/signrequest_client/api/documents_search_api.rb +133 -0
  60. data/lib/signrequest_client/api/events_api.rb +172 -0
  61. data/lib/signrequest_client/api/signrequest_quick_create_api.rb +78 -0
  62. data/lib/signrequest_client/api/signrequests_api.rb +316 -0
  63. data/lib/signrequest_client/api/team_members_api.rb +151 -0
  64. data/lib/signrequest_client/api/teams_api.rb +371 -0
  65. data/lib/signrequest_client/api/templates_api.rb +133 -0
  66. data/lib/signrequest_client/api/webhooks_api.rb +364 -0
  67. data/lib/signrequest_client/api_client.rb +389 -0
  68. data/lib/signrequest_client/api_error.rb +38 -0
  69. data/lib/signrequest_client/configuration.rb +209 -0
  70. data/lib/signrequest_client/models/auth_token.rb +298 -0
  71. data/lib/signrequest_client/models/document.rb +605 -0
  72. data/lib/signrequest_client/models/document_attachment.rb +304 -0
  73. data/lib/signrequest_client/models/document_search.rb +519 -0
  74. data/lib/signrequest_client/models/document_signer_template_conf.rb +294 -0
  75. data/lib/signrequest_client/models/event.rb +330 -0
  76. data/lib/signrequest_client/models/file_from_sf.rb +245 -0
  77. data/lib/signrequest_client/models/inline_document_signer_integration_data.rb +230 -0
  78. data/lib/signrequest_client/models/inline_integration_data.rb +230 -0
  79. data/lib/signrequest_client/models/inline_prefill_tags.rb +231 -0
  80. data/lib/signrequest_client/models/inline_response_200.rb +227 -0
  81. data/lib/signrequest_client/models/inline_response_200_1.rb +227 -0
  82. data/lib/signrequest_client/models/inline_response_200_2.rb +227 -0
  83. data/lib/signrequest_client/models/inline_response_200_3.rb +227 -0
  84. data/lib/signrequest_client/models/inline_response_200_4.rb +227 -0
  85. data/lib/signrequest_client/models/inline_response_200_5.rb +227 -0
  86. data/lib/signrequest_client/models/inline_response_200_6.rb +227 -0
  87. data/lib/signrequest_client/models/inline_response_200_7.rb +227 -0
  88. data/lib/signrequest_client/models/inline_response_200_8.rb +227 -0
  89. data/lib/signrequest_client/models/inline_response_200_9.rb +227 -0
  90. data/lib/signrequest_client/models/inline_sign_request.rb +496 -0
  91. data/lib/signrequest_client/models/inline_team.rb +247 -0
  92. data/lib/signrequest_client/models/inline_team_member.rb +249 -0
  93. data/lib/signrequest_client/models/invite_member.rb +234 -0
  94. data/lib/signrequest_client/models/placeholder.rb +326 -0
  95. data/lib/signrequest_client/models/required_attachment.rb +246 -0
  96. data/lib/signrequest_client/models/sign_request.rb +543 -0
  97. data/lib/signrequest_client/models/sign_request_quick_create.rb +764 -0
  98. data/lib/signrequest_client/models/signer.rb +751 -0
  99. data/lib/signrequest_client/models/signer_attachment.rb +247 -0
  100. data/lib/signrequest_client/models/signer_inputs.rb +312 -0
  101. data/lib/signrequest_client/models/signing_log.rb +213 -0
  102. data/lib/signrequest_client/models/team.rb +367 -0
  103. data/lib/signrequest_client/models/team_member.rb +258 -0
  104. data/lib/signrequest_client/models/template.rb +309 -0
  105. data/lib/signrequest_client/models/user.rb +296 -0
  106. data/lib/signrequest_client/models/webhook_subscription.rb +366 -0
  107. data/lib/signrequest_client/version.rb +15 -0
  108. data/lib/signrequest_client.rb +87 -0
  109. data/pkg/signrequest_client-0.1.0.gem +0 -0
  110. data/signrequest_client.gemspec +45 -0
  111. data/signrequst_client/.git/HEAD +1 -0
  112. data/signrequst_client/.git/config +7 -0
  113. data/signrequst_client/.git/description +1 -0
  114. data/signrequst_client/.git/hooks/applypatch-msg.sample +15 -0
  115. data/signrequst_client/.git/hooks/commit-msg.sample +24 -0
  116. data/signrequst_client/.git/hooks/fsmonitor-watchman.sample +114 -0
  117. data/signrequst_client/.git/hooks/post-update.sample +8 -0
  118. data/signrequst_client/.git/hooks/pre-applypatch.sample +14 -0
  119. data/signrequst_client/.git/hooks/pre-commit.sample +49 -0
  120. data/signrequst_client/.git/hooks/pre-push.sample +53 -0
  121. data/signrequst_client/.git/hooks/pre-rebase.sample +169 -0
  122. data/signrequst_client/.git/hooks/pre-receive.sample +24 -0
  123. data/signrequst_client/.git/hooks/prepare-commit-msg.sample +42 -0
  124. data/signrequst_client/.git/hooks/update.sample +128 -0
  125. data/signrequst_client/.git/index +0 -0
  126. data/signrequst_client/.git/info/exclude +6 -0
  127. data/signrequst_client/.git/objects/30/68cc8a074ffc0c7b8891cb21d68b5d367cb8c4 +0 -0
  128. data/signrequst_client/.git/objects/32/c4b7e9f988621ed2ce28954f1aaf088f340848 +2 -0
  129. data/signrequst_client/.git/objects/3e/8c4c2f8d1d5334612f3072160124e985f27e8c +0 -0
  130. data/signrequst_client/.git/objects/43/022f711e20ed55baf2470278eb8e428a04856f +0 -0
  131. data/signrequst_client/.git/objects/6f/8caa83dfb6dc8a987a2829cbfefae18c8870c3 +0 -0
  132. data/signrequst_client/.git/objects/91/06b2a345b019a799c02e5069affa88370b35dd +0 -0
  133. data/signrequst_client/.git/objects/aa/58e53f733551ac2bde6f7a50b5a9f16ddbf110 +0 -0
  134. data/signrequst_client/.git/objects/dc/e67d860af47a4eb630117ce03624bae45dcf26 +3 -0
  135. data/signrequst_client/.git/objects/f1/c9171bed4c19fd22429ffd68d4cbb2c3ce2fce +0 -0
  136. data/signrequst_client/.git/objects/f8/e4c2573ebc57d5a365ebe14d5c18cc8d0716c4 +0 -0
  137. data/spec/api/api_tokens_api_spec.rb +84 -0
  138. data/spec/api/document_attachments_api_spec.rb +75 -0
  139. data/spec/api/documents_api_spec.rb +106 -0
  140. data/spec/api/documents_search_api_spec.rb +60 -0
  141. data/spec/api/events_api_spec.rb +73 -0
  142. data/spec/api/signrequest_quick_create_api_spec.rb +47 -0
  143. data/spec/api/signrequests_api_spec.rb +100 -0
  144. data/spec/api/team_members_api_spec.rb +66 -0
  145. data/spec/api/teams_api_spec.rb +111 -0
  146. data/spec/api/templates_api_spec.rb +60 -0
  147. data/spec/api/webhooks_api_spec.rb +110 -0
  148. data/spec/api_client_spec.rb +226 -0
  149. data/spec/configuration_spec.rb +42 -0
  150. data/spec/models/auth_token_spec.rb +72 -0
  151. data/spec/models/document_attachment_spec.rb +84 -0
  152. data/spec/models/document_search_spec.rb +126 -0
  153. data/spec/models/document_signer_template_conf_spec.rb +78 -0
  154. data/spec/models/document_spec.rb +196 -0
  155. data/spec/models/event_spec.rb +104 -0
  156. data/spec/models/file_from_sf_spec.rb +48 -0
  157. data/spec/models/inline_document_signer_integration_data_spec.rb +52 -0
  158. data/spec/models/inline_integration_data_spec.rb +52 -0
  159. data/spec/models/inline_prefill_tags_spec.rb +60 -0
  160. data/spec/models/inline_response_200_1_spec.rb +60 -0
  161. data/spec/models/inline_response_200_2_spec.rb +60 -0
  162. data/spec/models/inline_response_200_3_spec.rb +60 -0
  163. data/spec/models/inline_response_200_4_spec.rb +60 -0
  164. data/spec/models/inline_response_200_5_spec.rb +60 -0
  165. data/spec/models/inline_response_200_6_spec.rb +60 -0
  166. data/spec/models/inline_response_200_7_spec.rb +60 -0
  167. data/spec/models/inline_response_200_8_spec.rb +60 -0
  168. data/spec/models/inline_response_200_9_spec.rb +60 -0
  169. data/spec/models/inline_response_200_spec.rb +60 -0
  170. data/spec/models/inline_sign_request_spec.rb +148 -0
  171. data/spec/models/inline_team_member_spec.rb +72 -0
  172. data/spec/models/inline_team_spec.rb +54 -0
  173. data/spec/models/invite_member_spec.rb +54 -0
  174. data/spec/models/placeholder_spec.rb +88 -0
  175. data/spec/models/required_attachment_spec.rb +48 -0
  176. data/spec/models/sign_request_quick_create_spec.rb +254 -0
  177. data/spec/models/sign_request_spec.rb +176 -0
  178. data/spec/models/signer_attachment_spec.rb +60 -0
  179. data/spec/models/signer_inputs_spec.rb +82 -0
  180. data/spec/models/signer_spec.rb +238 -0
  181. data/spec/models/signing_log_spec.rb +48 -0
  182. data/spec/models/team_member_spec.rb +78 -0
  183. data/spec/models/team_spec.rb +84 -0
  184. data/spec/models/template_spec.rb +82 -0
  185. data/spec/models/user_spec.rb +60 -0
  186. data/spec/models/webhook_subscription_spec.rb +92 -0
  187. data/spec/spec_helper.rb +111 -0
  188. metadata +461 -0
@@ -0,0 +1,496 @@
1
+ =begin
2
+ #SignRequest API
3
+
4
+ #API for SignRequest.com
5
+
6
+ OpenAPI spec version: v1
7
+ Contact: tech-support@signrequest.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module SignRequestClient
16
+
17
+ class InlineSignRequest
18
+ attr_accessor :from_email
19
+
20
+ attr_accessor :from_email_name
21
+
22
+ attr_accessor :is_being_prepared
23
+
24
+ attr_accessor :prepare_url
25
+
26
+ attr_accessor :redirect_url
27
+
28
+ attr_accessor :required_attachments
29
+
30
+ attr_accessor :disable_attachments
31
+
32
+ attr_accessor :disable_text_signatures
33
+
34
+ attr_accessor :disable_text
35
+
36
+ attr_accessor :disable_date
37
+
38
+ attr_accessor :disable_emails
39
+
40
+ attr_accessor :disable_upload_signatures
41
+
42
+ attr_accessor :subject
43
+
44
+ attr_accessor :message
45
+
46
+ attr_accessor :who
47
+
48
+ attr_accessor :send_reminders
49
+
50
+ attr_accessor :signers
51
+
52
+ attr_accessor :uuid
53
+
54
+ class EnumAttributeValidator
55
+ attr_reader :datatype
56
+ attr_reader :allowable_values
57
+
58
+ def initialize(datatype, allowable_values)
59
+ @allowable_values = allowable_values.map do |value|
60
+ case datatype.to_s
61
+ when /Integer/i
62
+ value.to_i
63
+ when /Float/i
64
+ value.to_f
65
+ else
66
+ value
67
+ end
68
+ end
69
+ end
70
+
71
+ def valid?(value)
72
+ !value || allowable_values.include?(value)
73
+ end
74
+ end
75
+
76
+ # Attribute mapping from ruby-style variable name to JSON key.
77
+ def self.attribute_map
78
+ {
79
+ :'from_email' => :'from_email',
80
+ :'from_email_name' => :'from_email_name',
81
+ :'is_being_prepared' => :'is_being_prepared',
82
+ :'prepare_url' => :'prepare_url',
83
+ :'redirect_url' => :'redirect_url',
84
+ :'required_attachments' => :'required_attachments',
85
+ :'disable_attachments' => :'disable_attachments',
86
+ :'disable_text_signatures' => :'disable_text_signatures',
87
+ :'disable_text' => :'disable_text',
88
+ :'disable_date' => :'disable_date',
89
+ :'disable_emails' => :'disable_emails',
90
+ :'disable_upload_signatures' => :'disable_upload_signatures',
91
+ :'subject' => :'subject',
92
+ :'message' => :'message',
93
+ :'who' => :'who',
94
+ :'send_reminders' => :'send_reminders',
95
+ :'signers' => :'signers',
96
+ :'uuid' => :'uuid'
97
+ }
98
+ end
99
+
100
+ # Attribute type mapping.
101
+ def self.swagger_types
102
+ {
103
+ :'from_email' => :'String',
104
+ :'from_email_name' => :'String',
105
+ :'is_being_prepared' => :'BOOLEAN',
106
+ :'prepare_url' => :'String',
107
+ :'redirect_url' => :'String',
108
+ :'required_attachments' => :'Array<RequiredAttachment>',
109
+ :'disable_attachments' => :'BOOLEAN',
110
+ :'disable_text_signatures' => :'BOOLEAN',
111
+ :'disable_text' => :'BOOLEAN',
112
+ :'disable_date' => :'BOOLEAN',
113
+ :'disable_emails' => :'BOOLEAN',
114
+ :'disable_upload_signatures' => :'BOOLEAN',
115
+ :'subject' => :'String',
116
+ :'message' => :'String',
117
+ :'who' => :'String',
118
+ :'send_reminders' => :'BOOLEAN',
119
+ :'signers' => :'Array<Signer>',
120
+ :'uuid' => :'String'
121
+ }
122
+ end
123
+
124
+ # Initializes the object
125
+ # @param [Hash] attributes Model attributes in the form of hash
126
+ def initialize(attributes = {})
127
+ return unless attributes.is_a?(Hash)
128
+
129
+ # convert string to symbol for hash key
130
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
131
+
132
+ if attributes.has_key?(:'from_email')
133
+ self.from_email = attributes[:'from_email']
134
+ end
135
+
136
+ if attributes.has_key?(:'from_email_name')
137
+ self.from_email_name = attributes[:'from_email_name']
138
+ end
139
+
140
+ if attributes.has_key?(:'is_being_prepared')
141
+ self.is_being_prepared = attributes[:'is_being_prepared']
142
+ end
143
+
144
+ if attributes.has_key?(:'prepare_url')
145
+ self.prepare_url = attributes[:'prepare_url']
146
+ end
147
+
148
+ if attributes.has_key?(:'redirect_url')
149
+ self.redirect_url = attributes[:'redirect_url']
150
+ end
151
+
152
+ if attributes.has_key?(:'required_attachments')
153
+ if (value = attributes[:'required_attachments']).is_a?(Array)
154
+ self.required_attachments = value
155
+ end
156
+ end
157
+
158
+ if attributes.has_key?(:'disable_attachments')
159
+ self.disable_attachments = attributes[:'disable_attachments']
160
+ end
161
+
162
+ if attributes.has_key?(:'disable_text_signatures')
163
+ self.disable_text_signatures = attributes[:'disable_text_signatures']
164
+ end
165
+
166
+ if attributes.has_key?(:'disable_text')
167
+ self.disable_text = attributes[:'disable_text']
168
+ end
169
+
170
+ if attributes.has_key?(:'disable_date')
171
+ self.disable_date = attributes[:'disable_date']
172
+ end
173
+
174
+ if attributes.has_key?(:'disable_emails')
175
+ self.disable_emails = attributes[:'disable_emails']
176
+ end
177
+
178
+ if attributes.has_key?(:'disable_upload_signatures')
179
+ self.disable_upload_signatures = attributes[:'disable_upload_signatures']
180
+ end
181
+
182
+ if attributes.has_key?(:'subject')
183
+ self.subject = attributes[:'subject']
184
+ end
185
+
186
+ if attributes.has_key?(:'message')
187
+ self.message = attributes[:'message']
188
+ end
189
+
190
+ if attributes.has_key?(:'who')
191
+ self.who = attributes[:'who']
192
+ end
193
+
194
+ if attributes.has_key?(:'send_reminders')
195
+ self.send_reminders = attributes[:'send_reminders']
196
+ end
197
+
198
+ if attributes.has_key?(:'signers')
199
+ if (value = attributes[:'signers']).is_a?(Array)
200
+ self.signers = value
201
+ end
202
+ end
203
+
204
+ if attributes.has_key?(:'uuid')
205
+ self.uuid = attributes[:'uuid']
206
+ end
207
+
208
+ end
209
+
210
+ # Show invalid properties with the reasons. Usually used together with valid?
211
+ # @return Array for valid properties with the reasons
212
+ def list_invalid_properties
213
+ invalid_properties = Array.new
214
+ if @from_email.nil?
215
+ invalid_properties.push("invalid value for 'from_email', from_email cannot be nil.")
216
+ end
217
+
218
+ if @from_email.to_s.length > 255
219
+ invalid_properties.push("invalid value for 'from_email', the character length must be smaller than or equal to 255.")
220
+ end
221
+
222
+ if @from_email.to_s.length < 1
223
+ invalid_properties.push("invalid value for 'from_email', the character length must be great than or equal to 1.")
224
+ end
225
+
226
+ if !@from_email_name.nil? && @from_email_name.to_s.length > 255
227
+ invalid_properties.push("invalid value for 'from_email_name', the character length must be smaller than or equal to 255.")
228
+ end
229
+
230
+ if !@prepare_url.nil? && @prepare_url.to_s.length < 1
231
+ invalid_properties.push("invalid value for 'prepare_url', the character length must be great than or equal to 1.")
232
+ end
233
+
234
+ if !@redirect_url.nil? && @redirect_url.to_s.length > 2100
235
+ invalid_properties.push("invalid value for 'redirect_url', the character length must be smaller than or equal to 2100.")
236
+ end
237
+
238
+ if !@subject.nil? && @subject.to_s.length > 512
239
+ invalid_properties.push("invalid value for 'subject', the character length must be smaller than or equal to 512.")
240
+ end
241
+
242
+ if @signers.nil?
243
+ invalid_properties.push("invalid value for 'signers', signers cannot be nil.")
244
+ end
245
+
246
+ if !@uuid.nil? && @uuid.to_s.length < 1
247
+ invalid_properties.push("invalid value for 'uuid', the character length must be great than or equal to 1.")
248
+ end
249
+
250
+ return invalid_properties
251
+ end
252
+
253
+ # Check to see if the all the properties in the model are valid
254
+ # @return true if the model is valid
255
+ def valid?
256
+ return false if @from_email.nil?
257
+ return false if @from_email.to_s.length > 255
258
+ return false if @from_email.to_s.length < 1
259
+ return false if !@from_email_name.nil? && @from_email_name.to_s.length > 255
260
+ return false if !@prepare_url.nil? && @prepare_url.to_s.length < 1
261
+ return false if !@redirect_url.nil? && @redirect_url.to_s.length > 2100
262
+ return false if !@subject.nil? && @subject.to_s.length > 512
263
+ who_validator = EnumAttributeValidator.new('String', ["m", "mo", "o"])
264
+ return false unless who_validator.valid?(@who)
265
+ return false if @signers.nil?
266
+ return false if !@uuid.nil? && @uuid.to_s.length < 1
267
+ return true
268
+ end
269
+
270
+ # Custom attribute writer method with validation
271
+ # @param [Object] from_email Value to be assigned
272
+ def from_email=(from_email)
273
+ if from_email.nil?
274
+ fail ArgumentError, "from_email cannot be nil"
275
+ end
276
+
277
+ if from_email.to_s.length > 255
278
+ fail ArgumentError, "invalid value for 'from_email', the character length must be smaller than or equal to 255."
279
+ end
280
+
281
+ if from_email.to_s.length < 1
282
+ fail ArgumentError, "invalid value for 'from_email', the character length must be great than or equal to 1."
283
+ end
284
+
285
+ @from_email = from_email
286
+ end
287
+
288
+ # Custom attribute writer method with validation
289
+ # @param [Object] from_email_name Value to be assigned
290
+ def from_email_name=(from_email_name)
291
+
292
+ if !from_email_name.nil? && from_email_name.to_s.length > 255
293
+ fail ArgumentError, "invalid value for 'from_email_name', the character length must be smaller than or equal to 255."
294
+ end
295
+
296
+ @from_email_name = from_email_name
297
+ end
298
+
299
+ # Custom attribute writer method with validation
300
+ # @param [Object] prepare_url Value to be assigned
301
+ def prepare_url=(prepare_url)
302
+
303
+ if !prepare_url.nil? && prepare_url.to_s.length < 1
304
+ fail ArgumentError, "invalid value for 'prepare_url', the character length must be great than or equal to 1."
305
+ end
306
+
307
+ @prepare_url = prepare_url
308
+ end
309
+
310
+ # Custom attribute writer method with validation
311
+ # @param [Object] redirect_url Value to be assigned
312
+ def redirect_url=(redirect_url)
313
+
314
+ if !redirect_url.nil? && redirect_url.to_s.length > 2100
315
+ fail ArgumentError, "invalid value for 'redirect_url', the character length must be smaller than or equal to 2100."
316
+ end
317
+
318
+ @redirect_url = redirect_url
319
+ end
320
+
321
+ # Custom attribute writer method with validation
322
+ # @param [Object] subject Value to be assigned
323
+ def subject=(subject)
324
+
325
+ if !subject.nil? && subject.to_s.length > 512
326
+ fail ArgumentError, "invalid value for 'subject', the character length must be smaller than or equal to 512."
327
+ end
328
+
329
+ @subject = subject
330
+ end
331
+
332
+ # Custom attribute writer method checking allowed values (enum).
333
+ # @param [Object] who Object to be assigned
334
+ def who=(who)
335
+ validator = EnumAttributeValidator.new('String', ["m", "mo", "o"])
336
+ unless validator.valid?(who)
337
+ fail ArgumentError, "invalid value for 'who', must be one of #{validator.allowable_values}."
338
+ end
339
+ @who = who
340
+ end
341
+
342
+ # Custom attribute writer method with validation
343
+ # @param [Object] uuid Value to be assigned
344
+ def uuid=(uuid)
345
+
346
+ if !uuid.nil? && uuid.to_s.length < 1
347
+ fail ArgumentError, "invalid value for 'uuid', the character length must be great than or equal to 1."
348
+ end
349
+
350
+ @uuid = uuid
351
+ end
352
+
353
+ # Checks equality by comparing each attribute.
354
+ # @param [Object] Object to be compared
355
+ def ==(o)
356
+ return true if self.equal?(o)
357
+ self.class == o.class &&
358
+ from_email == o.from_email &&
359
+ from_email_name == o.from_email_name &&
360
+ is_being_prepared == o.is_being_prepared &&
361
+ prepare_url == o.prepare_url &&
362
+ redirect_url == o.redirect_url &&
363
+ required_attachments == o.required_attachments &&
364
+ disable_attachments == o.disable_attachments &&
365
+ disable_text_signatures == o.disable_text_signatures &&
366
+ disable_text == o.disable_text &&
367
+ disable_date == o.disable_date &&
368
+ disable_emails == o.disable_emails &&
369
+ disable_upload_signatures == o.disable_upload_signatures &&
370
+ subject == o.subject &&
371
+ message == o.message &&
372
+ who == o.who &&
373
+ send_reminders == o.send_reminders &&
374
+ signers == o.signers &&
375
+ uuid == o.uuid
376
+ end
377
+
378
+ # @see the `==` method
379
+ # @param [Object] Object to be compared
380
+ def eql?(o)
381
+ self == o
382
+ end
383
+
384
+ # Calculates hash code according to all attributes.
385
+ # @return [Fixnum] Hash code
386
+ def hash
387
+ [from_email, from_email_name, is_being_prepared, prepare_url, redirect_url, required_attachments, disable_attachments, disable_text_signatures, disable_text, disable_date, disable_emails, disable_upload_signatures, subject, message, who, send_reminders, signers, uuid].hash
388
+ end
389
+
390
+ # Builds the object from hash
391
+ # @param [Hash] attributes Model attributes in the form of hash
392
+ # @return [Object] Returns the model itself
393
+ def build_from_hash(attributes)
394
+ return nil unless attributes.is_a?(Hash)
395
+ self.class.swagger_types.each_pair do |key, type|
396
+ if type =~ /\AArray<(.*)>/i
397
+ # check to ensure the input is an array given that the the attribute
398
+ # is documented as an array but the input is not
399
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
400
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
401
+ end
402
+ elsif !attributes[self.class.attribute_map[key]].nil?
403
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
404
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
405
+ end
406
+
407
+ self
408
+ end
409
+
410
+ # Deserializes the data based on type
411
+ # @param string type Data type
412
+ # @param string value Value to be deserialized
413
+ # @return [Object] Deserialized data
414
+ def _deserialize(type, value)
415
+ case type.to_sym
416
+ when :DateTime
417
+ DateTime.parse(value)
418
+ when :Date
419
+ Date.parse(value)
420
+ when :String
421
+ value.to_s
422
+ when :Integer
423
+ value.to_i
424
+ when :Float
425
+ value.to_f
426
+ when :BOOLEAN
427
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
428
+ true
429
+ else
430
+ false
431
+ end
432
+ when :Object
433
+ # generic object (usually a Hash), return directly
434
+ value
435
+ when /\AArray<(?<inner_type>.+)>\z/
436
+ inner_type = Regexp.last_match[:inner_type]
437
+ value.map { |v| _deserialize(inner_type, v) }
438
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
439
+ k_type = Regexp.last_match[:k_type]
440
+ v_type = Regexp.last_match[:v_type]
441
+ {}.tap do |hash|
442
+ value.each do |k, v|
443
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
444
+ end
445
+ end
446
+ else # model
447
+ temp_model = SignRequestClient.const_get(type).new
448
+ temp_model.build_from_hash(value)
449
+ end
450
+ end
451
+
452
+ # Returns the string representation of the object
453
+ # @return [String] String presentation of the object
454
+ def to_s
455
+ to_hash.to_s
456
+ end
457
+
458
+ # to_body is an alias to to_hash (backward compatibility)
459
+ # @return [Hash] Returns the object in the form of hash
460
+ def to_body
461
+ to_hash
462
+ end
463
+
464
+ # Returns the object in the form of hash
465
+ # @return [Hash] Returns the object in the form of hash
466
+ def to_hash
467
+ hash = {}
468
+ self.class.attribute_map.each_pair do |attr, param|
469
+ value = self.send(attr)
470
+ next if value.nil?
471
+ hash[param] = _to_hash(value)
472
+ end
473
+ hash
474
+ end
475
+
476
+ # Outputs non-array value in the form of hash
477
+ # For object, use to_hash. Otherwise, just return the value
478
+ # @param [Object] value Any valid value
479
+ # @return [Hash] Returns the value in the form of hash
480
+ def _to_hash(value)
481
+ if value.is_a?(Array)
482
+ value.compact.map{ |v| _to_hash(v) }
483
+ elsif value.is_a?(Hash)
484
+ {}.tap do |hash|
485
+ value.each { |k, v| hash[k] = _to_hash(v) }
486
+ end
487
+ elsif value.respond_to? :to_hash
488
+ value.to_hash
489
+ else
490
+ value
491
+ end
492
+ end
493
+
494
+ end
495
+
496
+ end