Class: Io::Flow::V0::Models::MembershipUpsertedV2
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#event_id ⇒ Object
readonly
Returns the value of attribute event_id.
-
#membership ⇒ Object
readonly
Returns the value of attribute membership.
-
#timestamp ⇒ Object
readonly
Returns the value of attribute timestamp.
Attributes inherited from Event
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ MembershipUpsertedV2
constructor
A new instance of MembershipUpsertedV2.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Event
Constructor Details
#initialize(incoming = {}) ⇒ MembershipUpsertedV2
39271 39272 39273 39274 39275 39276 39277 39278 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39271 def initialize(incoming={}) super(:discriminator => Event::Types::MEMBERSHIP_UPSERTED_V2) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :membership], 'MembershipUpsertedV2') @event_id = HttpClient::Preconditions.assert_class('event_id', opts.delete(:event_id), String) = HttpClient::Preconditions.assert_class('timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:timestamp)), DateTime) @membership = (x = opts.delete(:membership); x.is_a?(::Io::Flow::V0::Models::Membership) ? x : ::Io::Flow::V0::Models::Membership.new(x)) end |
Instance Attribute Details
#event_id ⇒ Object (readonly)
Returns the value of attribute event_id.
39269 39270 39271 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39269 def event_id @event_id end |
#membership ⇒ Object (readonly)
Returns the value of attribute membership.
39269 39270 39271 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39269 def membership @membership end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
39269 39270 39271 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39269 def end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
39284 39285 39286 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39284 def copy(incoming={}) MembershipUpsertedV2.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
39288 39289 39290 39291 39292 39293 39294 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39288 def subtype_to_hash { :event_id => event_id, :timestamp => , :membership => membership.to_hash } end |
#to_json ⇒ Object
39280 39281 39282 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39280 def to_json JSON.dump(to_hash) end |