Class: Io::Flow::V0::Models::AvailableService

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

Overview

Representation of a service level available at a center and the special pickup times during the week. If pickup schedules are not provided, assumption is once a day during the weekdays.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ AvailableService

Returns a new instance of AvailableService.



11509
11510
11511
11512
11513
11514
11515
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11509

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:service], 'AvailableService')
  @service = HttpClient::Preconditions.assert_class('service', opts.delete(:service), String)
  @scheduled_pickups = (x = opts.delete(:scheduled_pickups); x.nil? ? nil : HttpClient::Preconditions.assert_class('scheduled_pickups', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ScheduledPickup) ? x : ::Io::Flow::V0::Models::ScheduledPickup.new(x)) })
  @lead_days = (x = opts.delete(:lead_days); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::NumberRange) ? x : ::Io::Flow::V0::Models::NumberRange.new(x)))
end

Instance Attribute Details

#lead_daysObject (readonly)

Returns the value of attribute lead_days.



11507
11508
11509
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11507

def lead_days
  @lead_days
end

#scheduled_pickupsObject (readonly)

Returns the value of attribute scheduled_pickups.



11507
11508
11509
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11507

def scheduled_pickups
  @scheduled_pickups
end

#serviceObject (readonly)

Returns the value of attribute service.



11507
11508
11509
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11507

def service
  @service
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



11521
11522
11523
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11521

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

#to_hashObject



11525
11526
11527
11528
11529
11530
11531
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11525

def to_hash
  {
    :service => service,
    :scheduled_pickups => scheduled_pickups.nil? ? nil : scheduled_pickups.map { |o| o.to_hash },
    :lead_days => lead_days.nil? ? nil : lead_days.to_hash
  }
end

#to_jsonObject



11517
11518
11519
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11517

def to_json
  JSON.dump(to_hash)
end