Class: Io::Flow::V0::Models::MembershipDeletedV2
- 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 = {}) ⇒ MembershipDeletedV2
constructor
A new instance of MembershipDeletedV2.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Event
Constructor Details
#initialize(incoming = {}) ⇒ MembershipDeletedV2
Returns a new instance of MembershipDeletedV2.
49730 49731 49732 49733 49734 49735 49736 49737 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49730 def initialize(incoming={}) super(:discriminator => Event::Types::MEMBERSHIP_DELETED_V2) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :membership], 'MembershipDeletedV2') @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_id ⇒ Object (readonly)
Returns the value of attribute event_id.
49728 49729 49730 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49728 def event_id @event_id end |
#membership ⇒ Object (readonly)
Returns the value of attribute membership.
49728 49729 49730 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49728 def membership @membership end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
49728 49729 49730 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49728 def @timestamp end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
49743 49744 49745 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49743 def copy(incoming={}) MembershipDeletedV2.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
49747 49748 49749 49750 49751 49752 49753 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49747 def subtype_to_hash { :event_id => event_id, :timestamp => , :membership => membership.to_hash } end |
#to_json ⇒ Object
49739 49740 49741 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49739 def to_json JSON.dump(to_hash) end |