class Softlayer::Billing::Order::Quote

Constants

SERVICE

Attributes

account[RW]
account_id[RW]
completed_purchase_data_id[RW]
create_date[RW]
expiration_date[RW]
id[RW]
modify_date[RW]
name[RW]
order[RW]
orders_from_quote[RW]
orders_from_quote_count[RW]
public_note[RW]
quote_key[RW]
status[RW]

Public Class Methods

claim(message) click to toggle source

quote_key quote_id

# File lib/softlayer/billing/order/quote.rb, line 23
def self.claim(message)
  request(:claim, Softlayer::Billing::Order::Quote, message)
end
get_quote_by_quote_key(message) click to toggle source

quote_key

# File lib/softlayer/billing/order/quote.rb, line 52
def self.get_quote_by_quote_key(message)
  request(:get_quote_by_quote_key, Softlayer::Billing::Order::Quote, message)
end

Public Instance Methods

delete_quote() click to toggle source
# File lib/softlayer/billing/order/quote.rb, line 27
def delete_quote
  request(:delete_quote, Softlayer::Billing::Order::Quote)
end
get_account() click to toggle source
# File lib/softlayer/billing/order/quote.rb, line 31
def get_account
  request(:get_account, Softlayer::Account)
end
get_object() click to toggle source
# File lib/softlayer/billing/order/quote.rb, line 35
def get_object
  request(:get_object, Softlayer::Billing::Order::Quote)
end
get_order() click to toggle source
# File lib/softlayer/billing/order/quote.rb, line 39
def get_order
  request(:get_order, Softlayer::Billing::Order)
end
get_orders_from_quote() click to toggle source
# File lib/softlayer/billing/order/quote.rb, line 43
def get_orders_from_quote
  request(:get_orders_from_quote, Array[Softlayer::Billing::Order])
end
get_pdf() click to toggle source
# File lib/softlayer/billing/order/quote.rb, line 47
def get_pdf
  request(:get_pdf, Softlayer::Base64Binary)
end
get_recalculated_order_container(message) click to toggle source

order_data order_being_placed_flag

# File lib/softlayer/billing/order/quote.rb, line 58
def get_recalculated_order_container(message)
  request(:get_recalculated_order_container, Softlayer::Container::Product::Order, message)
end
place_order(message) click to toggle source

order_data

# File lib/softlayer/billing/order/quote.rb, line 63
def place_order(message)
  request(:place_order, Softlayer::Container::Product::Order::Receipt, message)
end
place_quote(message) click to toggle source

order_data

# File lib/softlayer/billing/order/quote.rb, line 68
def place_quote(message)
  request(:place_quote, Softlayer::Container::Product::Order, message)
end
save_quote() click to toggle source
# File lib/softlayer/billing/order/quote.rb, line 72
def save_quote
  request(:save_quote, Softlayer::Billing::Order::Quote)
end
verify_order(message) click to toggle source

order_data

# File lib/softlayer/billing/order/quote.rb, line 77
def verify_order(message)
  request(:verify_order, Softlayer::Container::Product::Order, message)
end