Class: Gonebusy::CreateResourceBody
- Defined in:
- lib/gonebusy/models/create_resource_body.rb
Instance Attribute Summary collapse
-
#capacity ⇒ Integer
Optional Capacity.
-
#description ⇒ String
Optional Description.
-
#gender ⇒ GenderEnum
Optional Gender.
-
#name ⇒ String
Resource Name.
-
#thing_type_id ⇒ Integer
When Resource is a Thing, the type Id.
-
#type ⇒ String
Type of Resource.
-
#user_id ⇒ Integer
Create a Resource 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, user_id = nil, description = nil, capacity = nil, gender = nil, thing_type_id = nil) ⇒ CreateResourceBody
constructor
A new instance of CreateResourceBody.
Methods inherited from BaseModel
Constructor Details
#initialize(name = nil, type = nil, user_id = nil, description = nil, capacity = nil, gender = nil, thing_type_id = nil) ⇒ CreateResourceBody
Returns a new instance of CreateResourceBody.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 48 def initialize(name = nil, type = nil, user_id = nil, description = nil, capacity = nil, gender = nil, thing_type_id = nil) @name = name @type = type @user_id = user_id @description = description @capacity = capacity @gender = gender @thing_type_id = thing_type_id end |
Instance Attribute Details
#capacity ⇒ Integer
Optional Capacity
23 24 25 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 23 def capacity @capacity end |
#description ⇒ String
Optional Description
19 20 21 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 19 def description @description end |
#gender ⇒ GenderEnum
Optional Gender
27 28 29 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 27 def gender @gender end |
#name ⇒ String
Resource Name
7 8 9 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 7 def name @name end |
#thing_type_id ⇒ Integer
When Resource is a Thing, the type Id
31 32 33 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 31 def thing_type_id @thing_type_id end |
#type ⇒ String
Type of Resource
11 12 13 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 11 def type @type end |
#user_id ⇒ Integer
Create a Resource for this User Id. You must be authorized to manage this User Id.
15 16 17 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 15 def user_id @user_id end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 65 def self.from_hash(hash) return nil unless hash # Extract variables from the hash name = hash['name'] type = hash['type'] user_id = hash['user_id'] description = hash['description'] capacity = hash['capacity'] gender = hash['gender'] thing_type_id = hash['thing_type_id'] # Create object from extracted values CreateResourceBody.new(name, type, user_id, description, capacity, gender, thing_type_id) end |
.names ⇒ Object
A mapping from model property names to API property names
34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/gonebusy/models/create_resource_body.rb', line 34 def self.names if @_hash.nil? @_hash = {} @_hash["name"] = "name" @_hash["type"] = "type" @_hash["user_id"] = "user_id" @_hash["description"] = "description" @_hash["capacity"] = "capacity" @_hash["gender"] = "gender" @_hash["thing_type_id"] = "thing_type_id" end @_hash end |