Class: Io::Flow::V0::Models::TierForm

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

Overview

Service shipping tier available in this tier group. e.g. Standard tier, Express tier, Economy tier

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ TierForm

Returns a new instance of TierForm.



53225
53226
53227
53228
53229
53230
53231
53232
53233
53234
53235
53236
53237
53238
53239
53240
53241
53242
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53225

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:currency, :integration, :name, :rules, :services, :strategy, :visibility, :shipping_lane], 'TierForm')
  @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String)
  @integration = (x = opts.delete(:integration); x.is_a?(::Io::Flow::V0::Models::ShipmentIntegrationType) ? x : ::Io::Flow::V0::Models::ShipmentIntegrationType.apply(x))
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @message = (x = opts.delete(:message); x.nil? ? nil : HttpClient::Preconditions.assert_class('message', x, String))
  @rules = HttpClient::Preconditions.assert_class('rules', opts.delete(:rules), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::TierRuleForm) ? x : ::Io::Flow::V0::Models::TierRuleForm.new(x)) }
  @services = HttpClient::Preconditions.assert_class('services', opts.delete(:services), Array).map { |v| HttpClient::Preconditions.assert_class('services', v, String) }
  @strategy = (x = opts.delete(:strategy); x.is_a?(::Io::Flow::V0::Models::TierStrategy) ? x : ::Io::Flow::V0::Models::TierStrategy.apply(x))
  @visibility = (x = opts.delete(:visibility); x.is_a?(::Io::Flow::V0::Models::Visibility) ? x : ::Io::Flow::V0::Models::Visibility.apply(x))
  @description = (x = opts.delete(:description); x.nil? ? nil : HttpClient::Preconditions.assert_class('description', x, String))
  @direction = (x = opts.delete(:direction); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::LaneDirection) ? x : ::Io::Flow::V0::Models::LaneDirection.apply(x)))
  @display = (x = opts.delete(:display); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::TierDisplayForm) ? x : ::Io::Flow::V0::Models::TierDisplayForm.new(x)))
  @shipping_lane = HttpClient::Preconditions.assert_class('shipping_lane', opts.delete(:shipping_lane), String)
  @surcharge_settings = (x = opts.delete(:surcharge_settings); x.nil? ? nil : HttpClient::Preconditions.assert_class('surcharge_settings', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::SurchargeSetting) ? x : ::Io::Flow::V0::Models::SurchargeSetting.new(x)) })
  @settings = (x = opts.delete(:settings); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::TierSettings) ? x : ::Io::Flow::V0::Models::TierSettings.new(x)))
end

Instance Attribute Details

#currencyObject (readonly)

Returns the value of attribute currency.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def currency
  @currency
end

#descriptionObject (readonly)

Returns the value of attribute description.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def description
  @description
end

#directionObject (readonly)

Returns the value of attribute direction.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def direction
  @direction
end

#displayObject (readonly)

Returns the value of attribute display.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def display
  @display
end

#integrationObject (readonly)

Returns the value of attribute integration.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def integration
  @integration
end

#messageObject (readonly)

Returns the value of attribute message.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def message
  @message
end

#nameObject (readonly)

Returns the value of attribute name.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def name
  @name
end

#rulesObject (readonly)

Returns the value of attribute rules.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def rules
  @rules
end

#servicesObject (readonly)

Returns the value of attribute services.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def services
  @services
end

#settingsObject (readonly)

Returns the value of attribute settings.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def settings
  @settings
end

#shipping_laneObject (readonly)

Returns the value of attribute shipping_lane.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def shipping_lane
  @shipping_lane
end

#strategyObject (readonly)

Returns the value of attribute strategy.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def strategy
  @strategy
end

#surcharge_settingsObject (readonly)

Returns the value of attribute surcharge_settings.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def surcharge_settings
  @surcharge_settings
end

#visibilityObject (readonly)

Returns the value of attribute visibility.



53223
53224
53225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53223

def visibility
  @visibility
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



53248
53249
53250
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53248

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

#to_hashObject



53252
53253
53254
53255
53256
53257
53258
53259
53260
53261
53262
53263
53264
53265
53266
53267
53268
53269
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53252

def to_hash
  {
    :currency => currency,
    :integration => integration.value,
    :name => name,
    :message => message,
    :rules => rules.map { |o| o.to_hash },
    :services => services,
    :strategy => strategy.value,
    :visibility => visibility.value,
    :description => description,
    :direction => direction.nil? ? nil : direction.value,
    :display => display.nil? ? nil : display.to_hash,
    :shipping_lane => shipping_lane,
    :surcharge_settings => surcharge_settings.nil? ? nil : surcharge_settings.map { |o| o.to_hash },
    :settings => settings.nil? ? nil : settings.to_hash
  }
end

#to_jsonObject



53244
53245
53246
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53244

def to_json
  JSON.dump(to_hash)
end