Class: UntitledApi::ApiV1SitesDevicesVcResponse

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/untitled_api/models/api_v1_sites_devices_vc_response.rb

Overview

Response data

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(id = SKIP, site_id = SKIP, org_id = SKIP, mac = SKIP, vc_mac = SKIP, serial = SKIP, model = SKIP, type = SKIP, status = SKIP, config_type = SKIP, members = SKIP) ⇒ ApiV1SitesDevicesVcResponse

Returns a new instance of ApiV1SitesDevicesVcResponse.



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 95

def initialize(id = SKIP,
               site_id = SKIP,
               org_id = SKIP,
               mac = SKIP,
               vc_mac = SKIP,
               serial = SKIP,
               model = SKIP,
               type = SKIP,
               status = SKIP,
               config_type = SKIP,
               members = SKIP)
  @id = id unless id == SKIP
  @site_id = site_id unless site_id == SKIP
  @org_id = org_id unless org_id == SKIP
  @mac = mac unless mac == SKIP
  @vc_mac = vc_mac unless vc_mac == SKIP
  @serial = serial unless serial == SKIP
  @model = model unless model == SKIP
  @type = type unless type == SKIP
  @status = status unless status == SKIP
  @config_type = config_type unless config_type == SKIP
  @members = members unless members == SKIP
end

Instance Attribute Details

#config_typeString

TODO: Write general description for this method

Returns:

  • (String)


50
51
52
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 50

def config_type
  @config_type
end

#idString

TODO: Write general description for this method

Returns:

  • (String)


14
15
16
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 14

def id
  @id
end

#macString

TODO: Write general description for this method

Returns:

  • (String)


26
27
28
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 26

def mac
  @mac
end

#membersObject

TODO: Write general description for this method

Returns:

  • (Object)


54
55
56
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 54

def members
  @members
end

#modelString

TODO: Write general description for this method

Returns:

  • (String)


38
39
40
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 38

def model
  @model
end

#org_idString

TODO: Write general description for this method

Returns:

  • (String)


22
23
24
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 22

def org_id
  @org_id
end

#serialString

TODO: Write general description for this method

Returns:

  • (String)


34
35
36
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 34

def serial
  @serial
end

#site_idString

TODO: Write general description for this method

Returns:

  • (String)


18
19
20
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 18

def site_id
  @site_id
end

#statusString

TODO: Write general description for this method

Returns:

  • (String)


46
47
48
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 46

def status
  @status
end

#typeString

TODO: Write general description for this method

Returns:

  • (String)


42
43
44
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 42

def type
  @type
end

#vc_macString

TODO: Write general description for this method

Returns:

  • (String)


30
31
32
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 30

def vc_mac
  @vc_mac
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 120

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  id = hash.key?('id') ? hash['id'] : SKIP
  site_id = hash.key?('site_id') ? hash['site_id'] : SKIP
  org_id = hash.key?('org_id') ? hash['org_id'] : SKIP
  mac = hash.key?('mac') ? hash['mac'] : SKIP
  vc_mac = hash.key?('vc_mac') ? hash['vc_mac'] : SKIP
  serial = hash.key?('serial') ? hash['serial'] : SKIP
  model = hash.key?('model') ? hash['model'] : SKIP
  type = hash.key?('type') ? hash['type'] : SKIP
  status = hash.key?('status') ? hash['status'] : SKIP
  config_type = hash.key?('config_type') ? hash['config_type'] : SKIP
  members = hash.key?('members') ? hash['members'] : SKIP

  # Create object from extracted values.
  ApiV1SitesDevicesVcResponse.new(id,
                                  site_id,
                                  org_id,
                                  mac,
                                  vc_mac,
                                  serial,
                                  model,
                                  type,
                                  status,
                                  config_type,
                                  members)
end

.namesObject

A mapping from model property names to API property names.



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 57

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['id'] = 'id'
  @_hash['site_id'] = 'site_id'
  @_hash['org_id'] = 'org_id'
  @_hash['mac'] = 'mac'
  @_hash['vc_mac'] = 'vc_mac'
  @_hash['serial'] = 'serial'
  @_hash['model'] = 'model'
  @_hash['type'] = 'type'
  @_hash['status'] = 'status'
  @_hash['config_type'] = 'config_type'
  @_hash['members'] = 'members'
  @_hash
end

.nullablesObject

An array for nullable fields



91
92
93
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 91

def self.nullables
  []
end

.optionalsObject

An array for optional fields



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/untitled_api/models/api_v1_sites_devices_vc_response.rb', line 74

def self.optionals
  %w[
    id
    site_id
    org_id
    mac
    vc_mac
    serial
    model
    type
    status
    config_type
    members
  ]
end