--[[
GameBrain API
GameBrain API
The version of the OpenAPI document: 1.0.1
Contact: mail@gamebrain.co
Generated by: https://openapi-generator.tech
]]
-- game_response_offers_inner_price class
local game_response_offers_inner_price = {}
local game_response_offers_inner_price_mt = {
__name = "game_response_offers_inner_price";
__index = game_response_offers_inner_price;
}
local function cast_game_response_offers_inner_price(t)
return setmetatable(t, game_response_offers_inner_price_mt)
end
local function new_game_response_offers_inner_price(currency, discount_percent, value, initial)
return cast_game_response_offers_inner_price({
["currency"] = currency;
["discount_percent"] = discount_percent;
["value"] = value;
["initial"] = initial;
})
end
return {
cast = cast_game_response_offers_inner_price;
new = new_game_response_offers_inner_price;
}