Class: DocuSign_eSign::Comment

Inherits:
Object
  • Object
show all
Defined in:
lib/docusign_esign/models/comment.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Comment

Initializes the object

Parameters:

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

    Model attributes in the form of hash



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
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
200
201
202
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
# File 'lib/docusign_esign/models/comment.rb', line 137

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?(:'envelopeId')
    self.envelope_id = attributes[:'envelopeId']
  end

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

end

Instance Attribute Details

#envelope_idObject

The envelope ID of the envelope status that failed to post.



18
19
20
# File 'lib/docusign_esign/models/comment.rb', line 18

def envelope_id
  @envelope_id
end

#hmacObject

Returns the value of attribute hmac.



21
22
23
# File 'lib/docusign_esign/models/comment.rb', line 21

def hmac
  @hmac
end

#idObject

Returns the value of attribute id.



24
25
26
# File 'lib/docusign_esign/models/comment.rb', line 24

def id
  @id
end

#mentionsObject

Returns the value of attribute mentions.



27
28
29
# File 'lib/docusign_esign/models/comment.rb', line 27

def mentions
  @mentions
end

#readObject

Returns the value of attribute read.



30
31
32
# File 'lib/docusign_esign/models/comment.rb', line 30

def read
  @read
end

#sent_by_emailObject

Returns the value of attribute sent_by_email.



33
34
35
# File 'lib/docusign_esign/models/comment.rb', line 33

def sent_by_email
  @sent_by_email
end

#sent_by_full_nameObject

Returns the value of attribute sent_by_full_name.



36
37
38
# File 'lib/docusign_esign/models/comment.rb', line 36

def sent_by_full_name
  @sent_by_full_name
end

#sent_by_image_idObject

Returns the value of attribute sent_by_image_id.



39
40
41
# File 'lib/docusign_esign/models/comment.rb', line 39

def sent_by_image_id
  @sent_by_image_id
end

#sent_by_initialsObject

Returns the value of attribute sent_by_initials.



42
43
44
# File 'lib/docusign_esign/models/comment.rb', line 42

def sent_by_initials
  @sent_by_initials
end

#sent_by_recipient_idObject

Returns the value of attribute sent_by_recipient_id.



45
46
47
# File 'lib/docusign_esign/models/comment.rb', line 45

def sent_by_recipient_id
  @sent_by_recipient_id
end

#sent_by_user_idObject

Returns the value of attribute sent_by_user_id.



48
49
50
# File 'lib/docusign_esign/models/comment.rb', line 48

def sent_by_user_id
  @sent_by_user_id
end

#signing_group_idObject

When set to true and the feature is enabled in the sender’s account, the signing recipient is required to draw signatures and initials at each signature/initial tab ( instead of adopting a signature/initial style or only drawing a signature/initial once).



51
52
53
# File 'lib/docusign_esign/models/comment.rb', line 51

def signing_group_id
  @signing_group_id
end

#signing_group_nameObject

The display name for the signing group. Maximum Length: 100 characters.



54
55
56
# File 'lib/docusign_esign/models/comment.rb', line 54

def signing_group_name
  @signing_group_name
end

#subjectObject

Returns the value of attribute subject.



57
58
59
# File 'lib/docusign_esign/models/comment.rb', line 57

def subject
  @subject
end

#tab_idObject

The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call].



60
61
62
# File 'lib/docusign_esign/models/comment.rb', line 60

def tab_id
  @tab_id
end

#textObject

Returns the value of attribute text.



63
64
65
# File 'lib/docusign_esign/models/comment.rb', line 63

def text
  @text
end

#thread_idObject

Returns the value of attribute thread_id.



66
67
68
# File 'lib/docusign_esign/models/comment.rb', line 66

def thread_id
  @thread_id
end

#thread_originator_idObject

Returns the value of attribute thread_originator_id.



69
70
71
# File 'lib/docusign_esign/models/comment.rb', line 69

def thread_originator_id
  @thread_originator_id
end

#time_stamp_formattedObject

Returns the value of attribute time_stamp_formatted.



75
76
77
# File 'lib/docusign_esign/models/comment.rb', line 75

def time_stamp_formatted
  @time_stamp_formatted
end

#timestampObject

Returns the value of attribute timestamp.



72
73
74
# File 'lib/docusign_esign/models/comment.rb', line 72

def timestamp
  @timestamp
end

#visible_toObject

Returns the value of attribute visible_to.



78
79
80
# File 'lib/docusign_esign/models/comment.rb', line 78

def visible_to
  @visible_to
end

Class Method Details

.attribute_mapObject

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



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/docusign_esign/models/comment.rb', line 82

def self.attribute_map
  {
    :'envelope_id' => :'envelopeId',
    :'hmac' => :'hmac',
    :'id' => :'id',
    :'mentions' => :'mentions',
    :'read' => :'read',
    :'sent_by_email' => :'sentByEmail',
    :'sent_by_full_name' => :'sentByFullName',
    :'sent_by_image_id' => :'sentByImageId',
    :'sent_by_initials' => :'sentByInitials',
    :'sent_by_recipient_id' => :'sentByRecipientId',
    :'sent_by_user_id' => :'sentByUserId',
    :'signing_group_id' => :'signingGroupId',
    :'signing_group_name' => :'signingGroupName',
    :'subject' => :'subject',
    :'tab_id' => :'tabId',
    :'text' => :'text',
    :'thread_id' => :'threadId',
    :'thread_originator_id' => :'threadOriginatorId',
    :'timestamp' => :'timestamp',
    :'time_stamp_formatted' => :'timeStampFormatted',
    :'visible_to' => :'visibleTo'
  }
end

.swagger_typesObject

Attribute type mapping.



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/docusign_esign/models/comment.rb', line 109

def self.swagger_types
  {
    :'envelope_id' => :'String',
    :'hmac' => :'String',
    :'id' => :'String',
    :'mentions' => :'Array<String>',
    :'read' => :'BOOLEAN',
    :'sent_by_email' => :'String',
    :'sent_by_full_name' => :'String',
    :'sent_by_image_id' => :'String',
    :'sent_by_initials' => :'String',
    :'sent_by_recipient_id' => :'String',
    :'sent_by_user_id' => :'String',
    :'signing_group_id' => :'String',
    :'signing_group_name' => :'String',
    :'subject' => :'String',
    :'tab_id' => :'String',
    :'text' => :'String',
    :'thread_id' => :'String',
    :'thread_originator_id' => :'String',
    :'timestamp' => :'String',
    :'time_stamp_formatted' => :'String',
    :'visible_to' => :'Array<String>'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



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
# File 'lib/docusign_esign/models/comment.rb', line 248

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      envelope_id == o.envelope_id &&
      hmac == o.hmac &&
      id == o.id &&
      mentions == o.mentions &&
      read == o.read &&
      sent_by_email == o.sent_by_email &&
      sent_by_full_name == o.sent_by_full_name &&
      sent_by_image_id == o.sent_by_image_id &&
      sent_by_initials == o.sent_by_initials &&
      sent_by_recipient_id == o.sent_by_recipient_id &&
      sent_by_user_id == o.sent_by_user_id &&
      signing_group_id == o.signing_group_id &&
      signing_group_name == o.signing_group_name &&
      subject == o.subject &&
      tab_id == o.tab_id &&
      text == o.text &&
      thread_id == o.thread_id &&
      thread_originator_id == o.thread_originator_id &&
      timestamp == o.timestamp &&
      time_stamp_formatted == o.time_stamp_formatted &&
      visible_to == o.visible_to
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



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
# File 'lib/docusign_esign/models/comment.rb', line 310

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 = DocuSign_eSign.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



376
377
378
379
380
381
382
383
384
385
386
387
388
# File 'lib/docusign_esign/models/comment.rb', line 376

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



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
# File 'lib/docusign_esign/models/comment.rb', line 289

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


276
277
278
# File 'lib/docusign_esign/models/comment.rb', line 276

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



282
283
284
# File 'lib/docusign_esign/models/comment.rb', line 282

def hash
  [envelope_id, hmac, id, mentions, read, sent_by_email, sent_by_full_name, sent_by_image_id, sent_by_initials, sent_by_recipient_id, sent_by_user_id, signing_group_id, signing_group_name, subject, tab_id, text, thread_id, thread_originator_id, timestamp, time_stamp_formatted, visible_to].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properies with the reasons



235
236
237
238
# File 'lib/docusign_esign/models/comment.rb', line 235

def list_invalid_properties
  invalid_properties = Array.new
  return 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



356
357
358
# File 'lib/docusign_esign/models/comment.rb', line 356

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



362
363
364
365
366
367
368
369
370
# File 'lib/docusign_esign/models/comment.rb', line 362

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



350
351
352
# File 'lib/docusign_esign/models/comment.rb', line 350

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



242
243
244
# File 'lib/docusign_esign/models/comment.rb', line 242

def valid?
  return true
end