Class: Gonebusy::CreatePricingModelBody
- Defined in:
- lib/gonebusy/models/create_pricing_model_body.rb
Instance Attribute Summary collapse
-
#currency ⇒ String
3 Letter ISO Currency Code.
-
#name ⇒ String
PricingModel Name.
-
#notes ⇒ String
Optional Notes Field.
-
#price ⇒ Float
Price.
-
#type ⇒ String
Type of PricingModel.
-
#user_id ⇒ Integer
Create a PricingModel for this User Id.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
Instance Method Summary collapse
-
#initialize(name = nil, type = nil, currency = nil, notes = nil, price = nil, user_id = nil) ⇒ CreatePricingModelBody
constructor
A new instance of CreatePricingModelBody.
Methods inherited from BaseModel
Constructor Details
#initialize(name = nil, type = nil, currency = nil, notes = nil, price = nil, user_id = nil) ⇒ CreatePricingModelBody
Returns a new instance of CreatePricingModelBody.
43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/gonebusy/models/create_pricing_model_body.rb', line 43 def initialize(name = nil, type = nil, currency = nil, notes = nil, price = nil, user_id = nil) @name = name @type = type @currency = currency @notes = notes @price = price @user_id = user_id end |
Instance Attribute Details
#currency ⇒ String
3 Letter ISO Currency Code
15 16 17 |
# File 'lib/gonebusy/models/create_pricing_model_body.rb', line 15 def currency @currency end |
#name ⇒ String
PricingModel Name
7 8 9 |
# File 'lib/gonebusy/models/create_pricing_model_body.rb', line 7 def name @name end |
#notes ⇒ String
Optional Notes Field
19 20 21 |
# File 'lib/gonebusy/models/create_pricing_model_body.rb', line 19 def notes @notes end |
#price ⇒ Float
Price
23 24 25 |
# File 'lib/gonebusy/models/create_pricing_model_body.rb', line 23 def price @price end |
#type ⇒ String
Type of PricingModel
11 12 13 |
# File 'lib/gonebusy/models/create_pricing_model_body.rb', line 11 def type @type end |
#user_id ⇒ Integer
Create a PricingModel for this User Id. You must be authorized to manage this User Id.
27 28 29 |
# File 'lib/gonebusy/models/create_pricing_model_body.rb', line 27 def user_id @user_id end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/gonebusy/models/create_pricing_model_body.rb', line 58 def self.from_hash(hash) if hash == nil nil else # Extract variables from the hash name = hash["name"] type = hash["type"] currency = hash["currency"] notes = hash["notes"] price = hash["price"] user_id = hash["user_id"] # Create object from extracted values CreatePricingModelBody.new(name, type, currency, notes, price, user_id) end end |
.names ⇒ Object
A mapping from model property names to API property names
30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/gonebusy/models/create_pricing_model_body.rb', line 30 def self.names if @hash.nil? @hash = {} @hash["name"] = "name" @hash["type"] = "type" @hash["currency"] = "currency" @hash["notes"] = "notes" @hash["price"] = "price" @hash["user_id"] = "user_id" end @hash end |