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.



5982
5983
5984
5985
5986
5987
5988
5989
5990
# File 'lib/models/porcelain.rb', line 5982

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.



5976
5977
5978
# File 'lib/models/porcelain.rb', line 5976

def identity_set
  @identity_set
end

#metaObject

Reserved for future use.



5978
5979
5980
# File 'lib/models/porcelain.rb', line 5978

def meta
  @meta
end

#rate_limitObject

Rate limit information.



5980
5981
5982
# File 'lib/models/porcelain.rb', line 5980

def rate_limit
  @rate_limit
end

Instance Method Details

#to_json(options = {}) ⇒ Object



5992
5993
5994
5995
5996
5997
5998
# File 'lib/models/porcelain.rb', line 5992

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