Class: Io::Flow::V0::Models::CountryStatusForm

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 = {}) ⇒ CountryStatusForm

Returns a new instance of CountryStatusForm.



32412
32413
32414
32415
32416
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32412

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:status], 'CountryStatusForm')
  @status = (x = opts.delete(:status); x.is_a?(::Io::Flow::V0::Models::ExperienceCountryStatus) ? x : ::Io::Flow::V0::Models::ExperienceCountryStatus.apply(x))
end

Instance Attribute Details

#statusObject (readonly)

Returns the value of attribute status.



32410
32411
32412
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32410

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



32422
32423
32424
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32422

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

#to_hashObject



32426
32427
32428
32429
32430
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32426

def to_hash
  {
    :status => status.value
  }
end

#to_jsonObject



32418
32419
32420
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32418

def to_json
  JSON.dump(to_hash)
end