class EveOnline::ESI::Models::LoyaltyStoreOffer

Public Instance Methods

ak_cost() click to toggle source
# File lib/eve_online/esi/models/loyalty_store_offer.rb, line 18
def ak_cost
  options["ak_cost"]
end
as_json() click to toggle source
# File lib/eve_online/esi/models/loyalty_store_offer.rb, line 7
def as_json
  {
    ak_cost: ak_cost,
    isk_cost: isk_cost,
    lp_cost: lp_cost,
    offer_id: offer_id,
    quantity: quantity,
    type_id: type_id
  }
end
isk_cost() click to toggle source
# File lib/eve_online/esi/models/loyalty_store_offer.rb, line 22
def isk_cost
  options["isk_cost"]
end
lp_cost() click to toggle source
# File lib/eve_online/esi/models/loyalty_store_offer.rb, line 26
def lp_cost
  options["lp_cost"]
end
offer_id() click to toggle source
# File lib/eve_online/esi/models/loyalty_store_offer.rb, line 30
def offer_id
  options["offer_id"]
end
offer_required_items() click to toggle source
# File lib/eve_online/esi/models/loyalty_store_offer.rb, line 42
def offer_required_items
  @offer_required_items ||= OfferRequiredItems.new(options["required_items"]).offer_required_items
end
quantity() click to toggle source
# File lib/eve_online/esi/models/loyalty_store_offer.rb, line 34
def quantity
  options["quantity"]
end
type_id() click to toggle source
# File lib/eve_online/esi/models/loyalty_store_offer.rb, line 38
def type_id
  options["type_id"]
end