Class: UntitledApi::ApiV1SitesDevicesImportResponse1
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- UntitledApi::ApiV1SitesDevicesImportResponse1
- Defined in:
- lib/untitled_api/models/api_v1_sites_devices_import_response1.rb
Overview
ApiV1SitesDevicesImportResponse1 Model.
Instance Attribute Summary collapse
-
#errors ⇒ Object
TODO: Write general description for this method.
-
#updated ⇒ Object
TODO: Write general description for this method.
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.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(updated = SKIP, errors = SKIP) ⇒ ApiV1SitesDevicesImportResponse1
constructor
A new instance of ApiV1SitesDevicesImportResponse1.
Methods inherited from BaseModel
Constructor Details
#initialize(updated = SKIP, errors = SKIP) ⇒ ApiV1SitesDevicesImportResponse1
41 42 43 44 45 |
# File 'lib/untitled_api/models/api_v1_sites_devices_import_response1.rb', line 41 def initialize(updated = SKIP, errors = SKIP) @updated = updated unless updated == SKIP @errors = errors unless errors == SKIP end |
Instance Attribute Details
#errors ⇒ Object
TODO: Write general description for this method
18 19 20 |
# File 'lib/untitled_api/models/api_v1_sites_devices_import_response1.rb', line 18 def errors @errors end |
#updated ⇒ Object
TODO: Write general description for this method
14 15 16 |
# File 'lib/untitled_api/models/api_v1_sites_devices_import_response1.rb', line 14 def updated @updated end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/untitled_api/models/api_v1_sites_devices_import_response1.rb', line 48 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. updated = hash.key?('updated') ? hash['updated'] : SKIP errors = hash.key?('errors') ? hash['errors'] : SKIP # Create object from extracted values. ApiV1SitesDevicesImportResponse1.new(updated, errors) end |
.names ⇒ Object
A mapping from model property names to API property names.
21 22 23 24 25 26 |
# File 'lib/untitled_api/models/api_v1_sites_devices_import_response1.rb', line 21 def self.names @_hash = {} if @_hash.nil? @_hash['updated'] = 'updated' @_hash['errors'] = 'errors' @_hash end |
.nullables ⇒ Object
An array for nullable fields
37 38 39 |
# File 'lib/untitled_api/models/api_v1_sites_devices_import_response1.rb', line 37 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
29 30 31 32 33 34 |
# File 'lib/untitled_api/models/api_v1_sites_devices_import_response1.rb', line 29 def self.optionals %w[ updated errors ] end |