Class: Verizon::DeregisterServiceEndpointResult

Inherits:
BaseModel
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

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, message = SKIP)
  @status = status unless status == SKIP
  @message = message unless message == SKIP
end

Instance Attribute Details

#messageString

EdgeAppServicesID that are deleted or error details in case of an error.

Returns:

  • (String)


19
20
21
# File 'lib/verizon/models/deregister_service_endpoint_result.rb', line 19

def message
  @message
end

#statusString

HTTP status code.

Returns:

  • (String)


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
  message = hash.key?('message') ? hash['message'] : SKIP

  # Create object from extracted values.
  DeregisterServiceEndpointResult.new(status,
                                      message)
end

.namesObject

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

.nullablesObject

An array for nullable fields



38
39
40
# File 'lib/verizon/models/deregister_service_endpoint_result.rb', line 38

def self.nullables
  []
end

.optionalsObject

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