Class: Io::Flow::V0::Models::OrderServiceChangeRequest

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 = {}) ⇒ OrderServiceChangeRequest

Returns a new instance of OrderServiceChangeRequest.



50216
50217
50218
50219
50220
50221
50222
50223
50224
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50216

def initialize(incoming={})
  super(:discriminator => Event::Types::ORDER_SERVICE_CHANGE_REQUEST)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :organization, :request], 'OrderServiceChangeRequest')
  @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)
  @request = (x = opts.delete(:request); x.is_a?(::Io::Flow::V0::Models::OrderServiceChangeRequestData) ? x : ::Io::Flow::V0::Models::OrderServiceChangeRequestData.new(x))
end

Instance Attribute Details

#event_idObject (readonly)

Returns the value of attribute event_id.



50214
50215
50216
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50214

def event_id
  @event_id
end

#organizationObject (readonly)

Returns the value of attribute organization.



50214
50215
50216
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50214

def organization
  @organization
end

#requestObject (readonly)

Returns the value of attribute request.



50214
50215
50216
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50214

def request
  @request
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



50214
50215
50216
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50214

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



50230
50231
50232
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50230

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

#subtype_to_hashObject



50234
50235
50236
50237
50238
50239
50240
50241
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50234

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

#to_jsonObject



50226
50227
50228
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50226

def to_json
  JSON.dump(to_hash)
end