Class: Io::Flow::V0::Models::UserReference

Inherits:
ExpandableUser show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Attributes inherited from ExpandableUser

#discriminator

Instance Method Summary collapse

Methods inherited from ExpandableUser

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ UserReference

Returns a new instance of UserReference.



33302
33303
33304
33305
33306
33307
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33302

def initialize(incoming={})
  super(:discriminator => ExpandableUser::Types::USER_REFERENCE)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id], 'UserReference')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



33300
33301
33302
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33300

def id
  @id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33313
33314
33315
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33313

def copy(incoming={})
  UserReference.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



33317
33318
33319
33320
33321
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33317

def subtype_to_hash
  {
    :id => id
  }
end

#to_jsonObject



33309
33310
33311
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33309

def to_json
  JSON.dump(to_hash)
end