Class: SDM::IdentitySetUpdateResponse

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

Overview

IdentitySetUpdateResponse returns the fields of a IdentitySet after it has been updated by a IdentitySetUpdateRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(identity_set: nil, meta: nil, rate_limit: nil) ⇒ IdentitySetUpdateResponse

Returns a new instance of IdentitySetUpdateResponse.



6278
6279
6280
6281
6282
6283
6284
6285
6286
# File 'lib/models/porcelain.rb', line 6278

def initialize(
  identity_set: nil,
  meta: nil,
  rate_limit: nil
)
  @identity_set = identity_set == nil ? nil : identity_set
  @meta = meta == nil ? nil : meta
  @rate_limit = rate_limit == nil ? nil : rate_limit
end

Instance Attribute Details

#identity_setObject

The updated IdentitySet.



6272
6273
6274
# File 'lib/models/porcelain.rb', line 6272

def identity_set
  @identity_set
end

#metaObject

Reserved for future use.



6274
6275
6276
# File 'lib/models/porcelain.rb', line 6274

def meta
  @meta
end

#rate_limitObject

Rate limit information.



6276
6277
6278
# File 'lib/models/porcelain.rb', line 6276

def rate_limit
  @rate_limit
end

Instance Method Details

#to_json(options = {}) ⇒ Object



6288
6289
6290
6291
6292
6293
6294
# File 'lib/models/porcelain.rb', line 6288

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end