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.



9577
9578
9579
9580
9581
9582
9583
9584
9585
# File 'lib/models/porcelain.rb', line 9577

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.



9571
9572
9573
# File 'lib/models/porcelain.rb', line 9571

def identity_set
  @identity_set
end

#metaObject

Reserved for future use.



9573
9574
9575
# File 'lib/models/porcelain.rb', line 9573

def meta
  @meta
end

#rate_limitObject

Rate limit information.



9575
9576
9577
# File 'lib/models/porcelain.rb', line 9575

def rate_limit
  @rate_limit
end

Instance Method Details

#to_json(options = {}) ⇒ Object



9587
9588
9589
9590
9591
9592
9593
# File 'lib/models/porcelain.rb', line 9587

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