Class: Io::Flow::V0::Models::TrackingEventForm

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ TrackingEventForm

Returns a new instance of TrackingEventForm.



66204
66205
66206
66207
66208
66209
66210
66211
66212
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66204

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:tracking_label_id, :timestamp, :status], 'TrackingEventForm')
  @tracking_label_id = HttpClient::Preconditions.assert_class('tracking_label_id', opts.delete(:tracking_label_id), String)
  @timestamp = HttpClient::Preconditions.assert_class('timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:timestamp)), DateTime)
  @status = (x = opts.delete(:status); x.is_a?(::Io::Flow::V0::Models::TrackingStatus) ? x : ::Io::Flow::V0::Models::TrackingStatus.apply(x))
  @description = (x = opts.delete(:description); x.nil? ? nil : HttpClient::Preconditions.assert_class('description', x, String))
  @address = (x = opts.delete(:address); x.nil? ? nil : HttpClient::Preconditions.assert_class('address', x, String))
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



66202
66203
66204
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66202

def address
  @address
end

#descriptionObject (readonly)

Returns the value of attribute description.



66202
66203
66204
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66202

def description
  @description
end

#statusObject (readonly)

Returns the value of attribute status.



66202
66203
66204
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66202

def status
  @status
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



66202
66203
66204
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66202

def timestamp
  @timestamp
end

#tracking_label_idObject (readonly)

Returns the value of attribute tracking_label_id.



66202
66203
66204
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66202

def tracking_label_id
  @tracking_label_id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



66218
66219
66220
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66218

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

#to_hashObject



66222
66223
66224
66225
66226
66227
66228
66229
66230
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66222

def to_hash
  {
    :tracking_label_id => tracking_label_id,
    :timestamp => timestamp,
    :status => status.value,
    :description => description,
    :address => address
  }
end

#to_jsonObject



66214
66215
66216
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66214

def to_json
  JSON.dump(to_hash)
end