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.



6879
6880
6881
6882
6883
6884
6885
6886
6887
# File 'lib/models/porcelain.rb', line 6879

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.



6873
6874
6875
# File 'lib/models/porcelain.rb', line 6873

def identity_set
  @identity_set
end

#metaObject

Reserved for future use.



6875
6876
6877
# File 'lib/models/porcelain.rb', line 6875

def meta
  @meta
end

#rate_limitObject

Rate limit information.



6877
6878
6879
# File 'lib/models/porcelain.rb', line 6877

def rate_limit
  @rate_limit
end

Instance Method Details

#to_json(options = {}) ⇒ Object



6889
6890
6891
6892
6893
6894
6895
# File 'lib/models/porcelain.rb', line 6889

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