Class: Verizon::DeregisterServiceEndpointResult
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- Verizon::DeregisterServiceEndpointResult
- Defined in:
- lib/verizon/models/deregister_service_endpoint_result.rb
Overview
Response to deregister an application’s Service Endpoint from one or more Multi-access Edge Compute (MEC) Platforms.
Instance Attribute Summary collapse
-
#message ⇒ String
EdgeAppServicesID that are deleted or error details in case of an error.
-
#status ⇒ String
HTTP status code.
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(status = SKIP, message = SKIP) ⇒ DeregisterServiceEndpointResult
constructor
A new instance of DeregisterServiceEndpointResult.
Methods inherited from BaseModel
Constructor Details
#initialize(status = SKIP, message = SKIP) ⇒ DeregisterServiceEndpointResult
Returns a new instance of DeregisterServiceEndpointResult.
42 43 44 45 |
# File 'lib/verizon/models/deregister_service_endpoint_result.rb', line 42 def initialize(status = SKIP, = SKIP) @status = status unless status == SKIP @message = unless == SKIP end |
Instance Attribute Details
#message ⇒ String
EdgeAppServicesID that are deleted or error details in case of an error.
19 20 21 |
# File 'lib/verizon/models/deregister_service_endpoint_result.rb', line 19 def @message end |
#status ⇒ String
HTTP status code.
15 16 17 |
# File 'lib/verizon/models/deregister_service_endpoint_result.rb', line 15 def status @status 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/verizon/models/deregister_service_endpoint_result.rb', line 48 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. status = hash.key?('status') ? hash['status'] : SKIP = hash.key?('message') ? hash['message'] : SKIP # Create object from extracted values. DeregisterServiceEndpointResult.new(status, ) end |
.names ⇒ Object
A mapping from model property names to API property names.
22 23 24 25 26 27 |
# File 'lib/verizon/models/deregister_service_endpoint_result.rb', line 22 def self.names @_hash = {} if @_hash.nil? @_hash['status'] = 'status' @_hash['message'] = 'message' @_hash end |
.nullables ⇒ Object
An array for nullable fields
38 39 40 |
# File 'lib/verizon/models/deregister_service_endpoint_result.rb', line 38 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
30 31 32 33 34 35 |
# File 'lib/verizon/models/deregister_service_endpoint_result.rb', line 30 def self.optionals %w[ status message ] end |