Class: Io::Flow::V0::Models::PriceBookItemSchedule
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PriceBookItemSchedule
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents schedule applied to a price book item
Instance Attribute Summary collapse
-
#ends_at ⇒ Object
readonly
Returns the value of attribute ends_at.
-
#starts_at ⇒ Object
readonly
Returns the value of attribute starts_at.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PriceBookItemSchedule
constructor
A new instance of PriceBookItemSchedule.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PriceBookItemSchedule
Returns a new instance of PriceBookItemSchedule.
39499 39500 39501 39502 39503 39504 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39499 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:starts_at], 'PriceBookItemSchedule') @starts_at = HttpClient::Preconditions.assert_class('starts_at', HttpClient::Helper.to_date_time_iso8601(opts.delete(:starts_at)), DateTime) @ends_at = (x = opts.delete(:ends_at); x.nil? ? nil : HttpClient::Preconditions.assert_class('ends_at', HttpClient::Helper.to_date_time_iso8601(x), DateTime)) end |
Instance Attribute Details
#ends_at ⇒ Object (readonly)
Returns the value of attribute ends_at.
39497 39498 39499 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39497 def ends_at @ends_at end |
#starts_at ⇒ Object (readonly)
Returns the value of attribute starts_at.
39497 39498 39499 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39497 def starts_at @starts_at end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
39510 39511 39512 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39510 def copy(incoming={}) PriceBookItemSchedule.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
39514 39515 39516 39517 39518 39519 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39514 def to_hash { :starts_at => starts_at, :ends_at => ends_at } end |
#to_json ⇒ Object
39506 39507 39508 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39506 def to_json JSON.dump(to_hash) end |