Class: Io::Flow::V0::Models::Ratecard
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Ratecard
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Snapshot of all lanes and rows across all service levels of an organization
Instance Attribute Summary collapse
-
#direction ⇒ Object
readonly
Returns the value of attribute direction.
-
#effective_at ⇒ Object
readonly
Returns the value of attribute effective_at.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#number ⇒ Object
readonly
Returns the value of attribute number.
-
#origination_zones ⇒ Object
readonly
Returns the value of attribute origination_zones.
-
#published_at ⇒ Object
readonly
Returns the value of attribute published_at.
-
#ratecard_owner ⇒ Object
readonly
Returns the value of attribute ratecard_owner.
-
#service ⇒ Object
readonly
Returns the value of attribute service.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Ratecard
constructor
A new instance of Ratecard.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Ratecard
Returns a new instance of Ratecard.
61802 61803 61804 61805 61806 61807 61808 61809 61810 61811 61812 61813 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61802 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :number, :direction, :effective_at, :origination_zones, :service, :ratecard_owner], 'Ratecard') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String) @direction = (x = opts.delete(:direction); x.is_a?(::Io::Flow::V0::Models::Direction) ? x : ::Io::Flow::V0::Models::Direction.apply(x)) @effective_at = HttpClient::Preconditions.assert_class('effective_at', HttpClient::Helper.to_date_time_iso8601(opts.delete(:effective_at)), DateTime) @origination_zones = HttpClient::Preconditions.assert_class('origination_zones', opts.delete(:origination_zones), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::Zone) ? x : ::Io::Flow::V0::Models::Zone.new(x)) } @service = (x = opts.delete(:service); x.is_a?(::Io::Flow::V0::Models::RatecardServiceSummary) ? x : ::Io::Flow::V0::Models::RatecardServiceSummary.new(x)) @published_at = (x = opts.delete(:published_at); x.nil? ? nil : HttpClient::Preconditions.assert_class('published_at', HttpClient::Helper.to_date_time_iso8601(x), DateTime)) @ratecard_owner = (x = opts.delete(:ratecard_owner); x.is_a?(::Io::Flow::V0::Models::RatecardOwner) ? x : ::Io::Flow::V0::Models::RatecardOwner.apply(x)) end |
Instance Attribute Details
#direction ⇒ Object (readonly)
Returns the value of attribute direction.
61800 61801 61802 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61800 def direction @direction end |
#effective_at ⇒ Object (readonly)
Returns the value of attribute effective_at.
61800 61801 61802 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61800 def effective_at @effective_at end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
61800 61801 61802 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61800 def id @id end |
#number ⇒ Object (readonly)
Returns the value of attribute number.
61800 61801 61802 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61800 def number @number end |
#origination_zones ⇒ Object (readonly)
Returns the value of attribute origination_zones.
61800 61801 61802 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61800 def origination_zones @origination_zones end |
#published_at ⇒ Object (readonly)
Returns the value of attribute published_at.
61800 61801 61802 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61800 def published_at @published_at end |
#ratecard_owner ⇒ Object (readonly)
Returns the value of attribute ratecard_owner.
61800 61801 61802 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61800 def ratecard_owner @ratecard_owner end |
#service ⇒ Object (readonly)
Returns the value of attribute service.
61800 61801 61802 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61800 def service @service end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
61819 61820 61821 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61819 def copy(incoming={}) Ratecard.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
61823 61824 61825 61826 61827 61828 61829 61830 61831 61832 61833 61834 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61823 def to_hash { :id => id, :number => number, :direction => direction.value, :effective_at => effective_at, :origination_zones => origination_zones.map { |o| o.to_hash }, :service => service.to_hash, :published_at => published_at, :ratecard_owner => ratecard_owner.value } end |
#to_json ⇒ Object
61815 61816 61817 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61815 def to_json JSON.dump(to_hash) end |