Class: Io::Flow::V0::Models::MembershipUpsertedV2

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

Instance Attribute Summary collapse

Attributes inherited from Event

#discriminator

Instance Method Summary collapse

Methods inherited from Event

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ MembershipUpsertedV2

Returns a new instance of MembershipUpsertedV2.



46284
46285
46286
46287
46288
46289
46290
46291
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46284

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)
  @timestamp = 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_idObject (readonly)

Returns the value of attribute event_id.



46282
46283
46284
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46282

def event_id
  @event_id
end

#membershipObject (readonly)

Returns the value of attribute membership.



46282
46283
46284
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46282

def membership
  @membership
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



46282
46283
46284
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46282

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



46297
46298
46299
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46297

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

#subtype_to_hashObject



46301
46302
46303
46304
46305
46306
46307
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46301

def subtype_to_hash
  {
    :event_id => event_id,
    :timestamp => timestamp,
    :membership => membership.to_hash
  }
end

#to_jsonObject



46293
46294
46295
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46293

def to_json
  JSON.dump(to_hash)
end