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.



7574
7575
7576
7577
7578
7579
7580
7581
7582
# File 'lib/models/porcelain.rb', line 7574

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.



7568
7569
7570
# File 'lib/models/porcelain.rb', line 7568

def identity_set
  @identity_set
end

#metaObject

Reserved for future use.



7570
7571
7572
# File 'lib/models/porcelain.rb', line 7570

def meta
  @meta
end

#rate_limitObject

Rate limit information.



7572
7573
7574
# File 'lib/models/porcelain.rb', line 7572

def rate_limit
  @rate_limit
end

Instance Method Details

#to_json(options = {}) ⇒ Object



7584
7585
7586
7587
7588
7589
7590
# File 'lib/models/porcelain.rb', line 7584

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