Class: SignRequestClient::Signer

Inherits:
Object
  • Object
show all
Defined in:
lib/signrequest_client/models/signer.rb

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Signer

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
# File 'lib/signrequest_client/models/signer.rb', line 203

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  if attributes.has_key?(:'email')
    self.email = attributes[:'email']
  end

  if attributes.has_key?(:'display_name')
    self.display_name = attributes[:'display_name']
  end

  if attributes.has_key?(:'first_name')
    self.first_name = attributes[:'first_name']
  end

  if attributes.has_key?(:'last_name')
    self.last_name = attributes[:'last_name']
  end

  if attributes.has_key?(:'email_viewed')
    self.email_viewed = attributes[:'email_viewed']
  end

  if attributes.has_key?(:'viewed')
    self.viewed = attributes[:'viewed']
  end

  if attributes.has_key?(:'signed')
    self.signed = attributes[:'signed']
  end

  if attributes.has_key?(:'downloaded')
    self.downloaded = attributes[:'downloaded']
  end

  if attributes.has_key?(:'signed_on')
    self.signed_on = attributes[:'signed_on']
  end

  if attributes.has_key?(:'needs_to_sign')
    self.needs_to_sign = attributes[:'needs_to_sign']
  else
    self.needs_to_sign = true
  end

  if attributes.has_key?(:'approve_only')
    self.approve_only = attributes[:'approve_only']
  end

  if attributes.has_key?(:'notify_only')
    self.notify_only = attributes[:'notify_only']
  end

  if attributes.has_key?(:'in_person')
    self.in_person = attributes[:'in_person']
  end

  if attributes.has_key?(:'order')
    self.order = attributes[:'order']
  end

  if attributes.has_key?(:'language')
    self.language = attributes[:'language']
  end

  if attributes.has_key?(:'force_language')
    self.force_language = attributes[:'force_language']
  end

  if attributes.has_key?(:'emailed')
    self.emailed = attributes[:'emailed']
  end

  if attributes.has_key?(:'verify_phone_number')
    self.verify_phone_number = attributes[:'verify_phone_number']
  end

  if attributes.has_key?(:'verify_bank_account')
    self. = attributes[:'verify_bank_account']
  end

  if attributes.has_key?(:'declined')
    self.declined = attributes[:'declined']
  end

  if attributes.has_key?(:'declined_on')
    self.declined_on = attributes[:'declined_on']
  end

  if attributes.has_key?(:'forwarded')
    self.forwarded = attributes[:'forwarded']
  end

  if attributes.has_key?(:'forwarded_on')
    self.forwarded_on = attributes[:'forwarded_on']
  end

  if attributes.has_key?(:'forwarded_to_email')
    self.forwarded_to_email = attributes[:'forwarded_to_email']
  end

  if attributes.has_key?(:'forwarded_reason')
    self.forwarded_reason = attributes[:'forwarded_reason']
  end

  if attributes.has_key?(:'message')
    self.message = attributes[:'message']
  end

  if attributes.has_key?(:'embed_url_user_id')
    self.embed_url_user_id = attributes[:'embed_url_user_id']
  end

  if attributes.has_key?(:'inputs')
    if (value = attributes[:'inputs']).is_a?(Array)
      self.inputs = value
    end
  end

  if attributes.has_key?(:'use_stamp_for_approve_only')
    self.use_stamp_for_approve_only = attributes[:'use_stamp_for_approve_only']
  end

  if attributes.has_key?(:'embed_url')
    self.embed_url = attributes[:'embed_url']
  end

  if attributes.has_key?(:'attachments')
    if (value = attributes[:'attachments']).is_a?(Array)
      self.attachments = value
    end
  end

  if attributes.has_key?(:'redirect_url')
    self.redirect_url = attributes[:'redirect_url']
  end

  if attributes.has_key?(:'redirect_url_declined')
    self.redirect_url_declined = attributes[:'redirect_url_declined']
  end

  if attributes.has_key?(:'after_document')
    self.after_document = attributes[:'after_document']
  end

  if attributes.has_key?(:'integrations')
    if (value = attributes[:'integrations']).is_a?(Array)
      self.integrations = value
    end
  end

  if attributes.has_key?(:'password')
    self.password = attributes[:'password']
  end
end

Instance Attribute Details

#after_documentObject

Returns the value of attribute after_document.



88
89
90
# File 'lib/signrequest_client/models/signer.rb', line 88

def after_document
  @after_document
end

#approve_onlyObject

Require user to approve the document (without adding a signature), see: [Approve only](#section/Additional-signing-methods/Approve-only)



39
40
41
# File 'lib/signrequest_client/models/signer.rb', line 39

def approve_only
  @approve_only
end

#attachmentsObject

Returns the value of attribute attachments.



82
83
84
# File 'lib/signrequest_client/models/signer.rb', line 82

def attachments
  @attachments
end

#declinedObject

Returns the value of attribute declined.



59
60
61
# File 'lib/signrequest_client/models/signer.rb', line 59

def declined
  @declined
end

#declined_onObject

Returns the value of attribute declined_on.



61
62
63
# File 'lib/signrequest_client/models/signer.rb', line 61

def declined_on
  @declined_on
end

#display_nameObject

Returns the value of attribute display_name.



19
20
21
# File 'lib/signrequest_client/models/signer.rb', line 19

def display_name
  @display_name
end

#downloadedObject

Returns the value of attribute downloaded.



31
32
33
# File 'lib/signrequest_client/models/signer.rb', line 31

def downloaded
  @downloaded
end

#emailObject

Returns the value of attribute email.



17
18
19
# File 'lib/signrequest_client/models/signer.rb', line 17

def email
  @email
end

#email_viewedObject

Returns the value of attribute email_viewed.



25
26
27
# File 'lib/signrequest_client/models/signer.rb', line 25

def email_viewed
  @email_viewed
end

#emailedObject

Returns the value of attribute emailed.



53
54
55
# File 'lib/signrequest_client/models/signer.rb', line 53

def emailed
  @emailed
end

#embed_urlObject

Returns the value of attribute embed_url.



80
81
82
# File 'lib/signrequest_client/models/signer.rb', line 80

def embed_url
  @embed_url
end

#embed_url_user_idObject

Returns the value of attribute embed_url_user_id.



73
74
75
# File 'lib/signrequest_client/models/signer.rb', line 73

def embed_url_user_id
  @embed_url_user_id
end

#first_nameObject

Returns the value of attribute first_name.



21
22
23
# File 'lib/signrequest_client/models/signer.rb', line 21

def first_name
  @first_name
end

#force_languageObject

Returns the value of attribute force_language.



51
52
53
# File 'lib/signrequest_client/models/signer.rb', line 51

def force_language
  @force_language
end

#forwardedObject

Returns the value of attribute forwarded.



63
64
65
# File 'lib/signrequest_client/models/signer.rb', line 63

def forwarded
  @forwarded
end

#forwarded_onObject

Returns the value of attribute forwarded_on.



65
66
67
# File 'lib/signrequest_client/models/signer.rb', line 65

def forwarded_on
  @forwarded_on
end

#forwarded_reasonObject

Returns the value of attribute forwarded_reason.



69
70
71
# File 'lib/signrequest_client/models/signer.rb', line 69

def forwarded_reason
  @forwarded_reason
end

#forwarded_to_emailObject

Returns the value of attribute forwarded_to_email.



67
68
69
# File 'lib/signrequest_client/models/signer.rb', line 67

def forwarded_to_email
  @forwarded_to_email
end

#in_personObject

When used in combination with an embed url on the sender, after sender has signed, they will be redirected to the next in_person signer, see: [In person signing](#section/Additional-signing-methods/In-person-signing)



45
46
47
# File 'lib/signrequest_client/models/signer.rb', line 45

def in_person
  @in_person
end

#inputsObject

Returns the value of attribute inputs.



75
76
77
# File 'lib/signrequest_client/models/signer.rb', line 75

def inputs
  @inputs
end

#integrationsObject

Returns the value of attribute integrations.



90
91
92
# File 'lib/signrequest_client/models/signer.rb', line 90

def integrations
  @integrations
end

#languageObject

Returns the value of attribute language.



49
50
51
# File 'lib/signrequest_client/models/signer.rb', line 49

def language
  @language
end

#last_nameObject

Returns the value of attribute last_name.



23
24
25
# File 'lib/signrequest_client/models/signer.rb', line 23

def last_name
  @last_name
end

#messageObject

Returns the value of attribute message.



71
72
73
# File 'lib/signrequest_client/models/signer.rb', line 71

def message
  @message
end

#needs_to_signObject

When false user does not need to sign, but will receive a copy of the signed document and signing log, see: [Copy only](#section/Additional-signing-methods/Copy-only)



36
37
38
# File 'lib/signrequest_client/models/signer.rb', line 36

def needs_to_sign
  @needs_to_sign
end

#notify_onlyObject

Send notifications about the document and a copy of the signed document and signing log, but don’t require them to take any action, see: [Notify only](#section/Additional-signing-methods/Notify-only)



42
43
44
# File 'lib/signrequest_client/models/signer.rb', line 42

def notify_only
  @notify_only
end

#orderObject

Returns the value of attribute order.



47
48
49
# File 'lib/signrequest_client/models/signer.rb', line 47

def order
  @order
end

#passwordObject

Require the signer to enter this password before signing a document. This field is write only.



93
94
95
# File 'lib/signrequest_client/models/signer.rb', line 93

def password
  @password
end

#redirect_urlObject

Returns the value of attribute redirect_url.



84
85
86
# File 'lib/signrequest_client/models/signer.rb', line 84

def redirect_url
  @redirect_url
end

#redirect_url_declinedObject

Returns the value of attribute redirect_url_declined.



86
87
88
# File 'lib/signrequest_client/models/signer.rb', line 86

def redirect_url_declined
  @redirect_url_declined
end

#signedObject

Returns the value of attribute signed.



29
30
31
# File 'lib/signrequest_client/models/signer.rb', line 29

def signed
  @signed
end

#signed_onObject

Returns the value of attribute signed_on.



33
34
35
# File 'lib/signrequest_client/models/signer.rb', line 33

def signed_on
  @signed_on
end

#use_stamp_for_approve_onlyObject

Place an approval stamp on a document when a signer approves a document



78
79
80
# File 'lib/signrequest_client/models/signer.rb', line 78

def use_stamp_for_approve_only
  @use_stamp_for_approve_only
end

#verify_bank_accountObject

Returns the value of attribute verify_bank_account.



57
58
59
# File 'lib/signrequest_client/models/signer.rb', line 57

def 
  
end

#verify_phone_numberObject

Returns the value of attribute verify_phone_number.



55
56
57
# File 'lib/signrequest_client/models/signer.rb', line 55

def verify_phone_number
  @verify_phone_number
end

#viewedObject

Returns the value of attribute viewed.



27
28
29
# File 'lib/signrequest_client/models/signer.rb', line 27

def viewed
  @viewed
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/signrequest_client/models/signer.rb', line 118

def self.attribute_map
  {
    :'email' => :'email',
    :'display_name' => :'display_name',
    :'first_name' => :'first_name',
    :'last_name' => :'last_name',
    :'email_viewed' => :'email_viewed',
    :'viewed' => :'viewed',
    :'signed' => :'signed',
    :'downloaded' => :'downloaded',
    :'signed_on' => :'signed_on',
    :'needs_to_sign' => :'needs_to_sign',
    :'approve_only' => :'approve_only',
    :'notify_only' => :'notify_only',
    :'in_person' => :'in_person',
    :'order' => :'order',
    :'language' => :'language',
    :'force_language' => :'force_language',
    :'emailed' => :'emailed',
    :'verify_phone_number' => :'verify_phone_number',
    :'verify_bank_account' => :'verify_bank_account',
    :'declined' => :'declined',
    :'declined_on' => :'declined_on',
    :'forwarded' => :'forwarded',
    :'forwarded_on' => :'forwarded_on',
    :'forwarded_to_email' => :'forwarded_to_email',
    :'forwarded_reason' => :'forwarded_reason',
    :'message' => :'message',
    :'embed_url_user_id' => :'embed_url_user_id',
    :'inputs' => :'inputs',
    :'use_stamp_for_approve_only' => :'use_stamp_for_approve_only',
    :'embed_url' => :'embed_url',
    :'attachments' => :'attachments',
    :'redirect_url' => :'redirect_url',
    :'redirect_url_declined' => :'redirect_url_declined',
    :'after_document' => :'after_document',
    :'integrations' => :'integrations',
    :'password' => :'password'
  }
end

.swagger_typesObject

Attribute type mapping.



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'lib/signrequest_client/models/signer.rb', line 160

def self.swagger_types
  {
    :'email' => :'String',
    :'display_name' => :'String',
    :'first_name' => :'String',
    :'last_name' => :'String',
    :'email_viewed' => :'BOOLEAN',
    :'viewed' => :'BOOLEAN',
    :'signed' => :'BOOLEAN',
    :'downloaded' => :'BOOLEAN',
    :'signed_on' => :'DateTime',
    :'needs_to_sign' => :'BOOLEAN',
    :'approve_only' => :'BOOLEAN',
    :'notify_only' => :'BOOLEAN',
    :'in_person' => :'BOOLEAN',
    :'order' => :'Integer',
    :'language' => :'String',
    :'force_language' => :'BOOLEAN',
    :'emailed' => :'BOOLEAN',
    :'verify_phone_number' => :'String',
    :'verify_bank_account' => :'String',
    :'declined' => :'BOOLEAN',
    :'declined_on' => :'DateTime',
    :'forwarded' => :'String',
    :'forwarded_on' => :'DateTime',
    :'forwarded_to_email' => :'String',
    :'forwarded_reason' => :'String',
    :'message' => :'String',
    :'embed_url_user_id' => :'String',
    :'inputs' => :'Array<SignerInputs>',
    :'use_stamp_for_approve_only' => :'BOOLEAN',
    :'embed_url' => :'String',
    :'attachments' => :'Array<SignerAttachment>',
    :'redirect_url' => :'String',
    :'redirect_url_declined' => :'String',
    :'after_document' => :'String',
    :'integrations' => :'Array<InlineDocumentSignerIntegrationData>',
    :'password' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
# File 'lib/signrequest_client/models/signer.rb', line 641

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      email == o.email &&
      display_name == o.display_name &&
      first_name == o.first_name &&
      last_name == o.last_name &&
      email_viewed == o.email_viewed &&
      viewed == o.viewed &&
      signed == o.signed &&
      downloaded == o.downloaded &&
      signed_on == o.signed_on &&
      needs_to_sign == o.needs_to_sign &&
      approve_only == o.approve_only &&
      notify_only == o.notify_only &&
      in_person == o.in_person &&
      order == o.order &&
      language == o.language &&
      force_language == o.force_language &&
      emailed == o.emailed &&
      verify_phone_number == o.verify_phone_number &&
       == o. &&
      declined == o.declined &&
      declined_on == o.declined_on &&
      forwarded == o.forwarded &&
      forwarded_on == o.forwarded_on &&
      forwarded_to_email == o.forwarded_to_email &&
      forwarded_reason == o.forwarded_reason &&
      message == o.message &&
      embed_url_user_id == o.embed_url_user_id &&
      inputs == o.inputs &&
      use_stamp_for_approve_only == o.use_stamp_for_approve_only &&
      embed_url == o.embed_url &&
      attachments == o.attachments &&
      redirect_url == o.redirect_url &&
      redirect_url_declined == o.redirect_url_declined &&
      after_document == o.after_document &&
      integrations == o.integrations &&
      password == o.password
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
# File 'lib/signrequest_client/models/signer.rb', line 718

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = SignRequestClient.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



784
785
786
787
788
789
790
791
792
793
794
795
796
# File 'lib/signrequest_client/models/signer.rb', line 784

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
# File 'lib/signrequest_client/models/signer.rb', line 697

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


684
685
686
# File 'lib/signrequest_client/models/signer.rb', line 684

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



690
691
692
# File 'lib/signrequest_client/models/signer.rb', line 690

def hash
  [email, display_name, first_name, last_name, email_viewed, viewed, signed, downloaded, signed_on, needs_to_sign, approve_only, notify_only, in_person, order, language, force_language, emailed, verify_phone_number, , declined, declined_on, forwarded, forwarded_on, forwarded_to_email, forwarded_reason, message, embed_url_user_id, inputs, use_stamp_for_approve_only, embed_url, attachments, redirect_url, redirect_url_declined, after_document, integrations, password].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
# File 'lib/signrequest_client/models/signer.rb', line 364

def list_invalid_properties
  invalid_properties = Array.new
  if @email.nil?
    invalid_properties.push('invalid value for "email", email cannot be nil.')
  end

  if @email.to_s.length > 255
    invalid_properties.push('invalid value for "email", the character length must be smaller than or equal to 255.')
  end

  if @email.to_s.length < 1
    invalid_properties.push('invalid value for "email", the character length must be great than or equal to 1.')
  end

  if !@display_name.nil? && @display_name.to_s.length < 1
    invalid_properties.push('invalid value for "display_name", the character length must be great than or equal to 1.')
  end

  if !@first_name.nil? && @first_name.to_s.length > 255
    invalid_properties.push('invalid value for "first_name", the character length must be smaller than or equal to 255.')
  end

  if !@last_name.nil? && @last_name.to_s.length > 255
    invalid_properties.push('invalid value for "last_name", the character length must be smaller than or equal to 255.')
  end

  if !@order.nil? && @order > 2147483647
    invalid_properties.push('invalid value for "order", must be smaller than or equal to 2147483647.')
  end

  if !@order.nil? && @order < 0
    invalid_properties.push('invalid value for "order", must be greater than or equal to 0.')
  end

  if !@verify_phone_number.nil? && @verify_phone_number.to_s.length > 255
    invalid_properties.push('invalid value for "verify_phone_number", the character length must be smaller than or equal to 255.')
  end

  if !.nil? && .to_s.length > 255
    invalid_properties.push('invalid value for "verify_bank_account", the character length must be smaller than or equal to 255.')
  end

  if !@forwarded_to_email.nil? && @forwarded_to_email.to_s.length < 1
    invalid_properties.push('invalid value for "forwarded_to_email", the character length must be great than or equal to 1.')
  end

  if !@forwarded_reason.nil? && @forwarded_reason.to_s.length < 1
    invalid_properties.push('invalid value for "forwarded_reason", the character length must be great than or equal to 1.')
  end

  if !@message.nil? && @message.to_s.length < 1
    invalid_properties.push('invalid value for "message", the character length must be great than or equal to 1.')
  end

  if !@embed_url_user_id.nil? && @embed_url_user_id.to_s.length > 255
    invalid_properties.push('invalid value for "embed_url_user_id", the character length must be smaller than or equal to 255.')
  end

  if !@embed_url.nil? && @embed_url.to_s.length < 1
    invalid_properties.push('invalid value for "embed_url", the character length must be great than or equal to 1.')
  end

  if !@redirect_url.nil? && @redirect_url.to_s.length > 2100
    invalid_properties.push('invalid value for "redirect_url", the character length must be smaller than or equal to 2100.')
  end

  if !@redirect_url_declined.nil? && @redirect_url_declined.to_s.length > 2100
    invalid_properties.push('invalid value for "redirect_url_declined", the character length must be smaller than or equal to 2100.')
  end

  if !@password.nil? && @password.to_s.length < 1
    invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
  end

  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



764
765
766
# File 'lib/signrequest_client/models/signer.rb', line 764

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



770
771
772
773
774
775
776
777
778
# File 'lib/signrequest_client/models/signer.rb', line 770

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



758
759
760
# File 'lib/signrequest_client/models/signer.rb', line 758

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
# File 'lib/signrequest_client/models/signer.rb', line 443

def valid?
  return false if @email.nil?
  return false if @email.to_s.length > 255
  return false if @email.to_s.length < 1
  return false if !@display_name.nil? && @display_name.to_s.length < 1
  return false if !@first_name.nil? && @first_name.to_s.length > 255
  return false if !@last_name.nil? && @last_name.to_s.length > 255
  return false if !@order.nil? && @order > 2147483647
  return false if !@order.nil? && @order < 0
  language_validator = EnumAttributeValidator.new('String', ['en', 'en-gb', 'nl', 'fr', 'de', 'he', 'da', 'fi', 'hu', 'it', 'no', 'pl', 'pt', 'es', 'sv', 'ru'])
  return false unless language_validator.valid?(@language)
  return false if !@verify_phone_number.nil? && @verify_phone_number.to_s.length > 255
  return false if !.nil? && .to_s.length > 255
  return false if !@forwarded_to_email.nil? && @forwarded_to_email.to_s.length < 1
  return false if !@forwarded_reason.nil? && @forwarded_reason.to_s.length < 1
  return false if !@message.nil? && @message.to_s.length < 1
  return false if !@embed_url_user_id.nil? && @embed_url_user_id.to_s.length > 255
  return false if !@embed_url.nil? && @embed_url.to_s.length < 1
  return false if !@redirect_url.nil? && @redirect_url.to_s.length > 2100
  return false if !@redirect_url_declined.nil? && @redirect_url_declined.to_s.length > 2100
  return false if !@password.nil? && @password.to_s.length < 1
  true
end