Class: Schemas::Common_types::ClientExceptionType

Inherits:
Object
  • Object
show all
Defined in:
lib/bluevia/schemas/common_types.rb

Overview

http://www.telefonica.com/schemas/UNICA/REST/common/v1ClientExceptionType

exceptionCategory - SOAP::SOAPString
exceptionId - SOAP::SOAPInt
text - SOAP::SOAPString
variables - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(exceptionCategory = nil, exceptionId = nil, text = nil, variables = []) ⇒ ClientExceptionType

Returns a new instance of ClientExceptionType.



100
101
102
103
104
105
# File 'lib/bluevia/schemas/common_types.rb', line 100

def initialize(exceptionCategory = nil, exceptionId = nil, text = nil, variables = [])
  @exceptionCategory = exceptionCategory
  @exceptionId = exceptionId
  @text = text
  @variables = variables
end

Instance Attribute Details

#exceptionCategoryObject

Returns the value of attribute exceptionCategory.



95
96
97
# File 'lib/bluevia/schemas/common_types.rb', line 95

def exceptionCategory
  @exceptionCategory
end

#exceptionIdObject

Returns the value of attribute exceptionId.



96
97
98
# File 'lib/bluevia/schemas/common_types.rb', line 96

def exceptionId
  @exceptionId
end

#textObject

Returns the value of attribute text.



97
98
99
# File 'lib/bluevia/schemas/common_types.rb', line 97

def text
  @text
end

#variablesObject

Returns the value of attribute variables.



98
99
100
# File 'lib/bluevia/schemas/common_types.rb', line 98

def variables
  @variables
end