Class: Io::Flow::V0::Models::PaymentMethodImages

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ PaymentMethodImages

Returns a new instance of PaymentMethodImages.



23333
23334
23335
23336
23337
23338
23339
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23333

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:small, :medium, :large], 'PaymentMethodImages')
  @small = (x = opts.delete(:small); x.is_a?(::Io::Flow::V0::Models::PaymentMethodImage) ? x : ::Io::Flow::V0::Models::PaymentMethodImage.new(x))
  @medium = (x = opts.delete(:medium); x.is_a?(::Io::Flow::V0::Models::PaymentMethodImage) ? x : ::Io::Flow::V0::Models::PaymentMethodImage.new(x))
  @large = (x = opts.delete(:large); x.is_a?(::Io::Flow::V0::Models::PaymentMethodImage) ? x : ::Io::Flow::V0::Models::PaymentMethodImage.new(x))
end

Instance Attribute Details

#largeObject (readonly)

Returns the value of attribute large.



23331
23332
23333
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23331

def large
  @large
end

#mediumObject (readonly)

Returns the value of attribute medium.



23331
23332
23333
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23331

def medium
  @medium
end

#smallObject (readonly)

Returns the value of attribute small.



23331
23332
23333
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23331

def small
  @small
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



23345
23346
23347
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23345

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

#to_hashObject



23349
23350
23351
23352
23353
23354
23355
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23349

def to_hash
  {
    :small => small.to_hash,
    :medium => medium.to_hash,
    :large => large.to_hash
  }
end

#to_jsonObject



23341
23342
23343
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23341

def to_json
  JSON.dump(to_hash)
end