Class: Io::Flow::V0::Models::OrganizationDefaultConfigurationsUpserted
- Inherits:
-
Event
- Object
- Event
- Io::Flow::V0::Models::OrganizationDefaultConfigurationsUpserted
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#default_configurations ⇒ Object
readonly
Returns the value of attribute default_configurations.
-
#event_id ⇒ Object
readonly
Returns the value of attribute event_id.
-
#organization ⇒ Object
readonly
Returns the value of attribute organization.
-
#timestamp ⇒ Object
readonly
Returns the value of attribute timestamp.
Attributes inherited from Event
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OrganizationDefaultConfigurationsUpserted
constructor
A new instance of OrganizationDefaultConfigurationsUpserted.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Event
Constructor Details
#initialize(incoming = {}) ⇒ OrganizationDefaultConfigurationsUpserted
Returns a new instance of OrganizationDefaultConfigurationsUpserted.
42160 42161 42162 42163 42164 42165 42166 42167 42168 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42160 def initialize(incoming={}) super(:discriminator => Event::Types::ORGANIZATION_DEFAULT_CONFIGURATIONS_UPSERTED) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :organization, :default_configurations], 'OrganizationDefaultConfigurationsUpserted') @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) @organization = HttpClient::Preconditions.assert_class('organization', opts.delete(:organization), String) @default_configurations = (x = opts.delete(:default_configurations); x.is_a?(::Io::Flow::V0::Models::OrganizationDefaultConfigurations) ? x : ::Io::Flow::V0::Models::OrganizationDefaultConfigurations.new(x)) end |
Instance Attribute Details
#default_configurations ⇒ Object (readonly)
Returns the value of attribute default_configurations.
42158 42159 42160 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42158 def default_configurations @default_configurations end |
#event_id ⇒ Object (readonly)
Returns the value of attribute event_id.
42158 42159 42160 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42158 def event_id @event_id end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
42158 42159 42160 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42158 def organization @organization end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
42158 42159 42160 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42158 def @timestamp end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
42174 42175 42176 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42174 def copy(incoming={}) OrganizationDefaultConfigurationsUpserted.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
42178 42179 42180 42181 42182 42183 42184 42185 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42178 def subtype_to_hash { :event_id => event_id, :timestamp => , :organization => organization, :default_configurations => default_configurations.to_hash } end |
#to_json ⇒ Object
42170 42171 42172 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42170 def to_json JSON.dump(to_hash) end |