Class: PostProxy::ErrorDetails

Inherits:
Model
  • Object
show all
Defined in:
lib/postproxy/types.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Model

#to_h

Constructor Details

#initialize(**attrs) ⇒ ErrorDetails

Returns a new instance of ErrorDetails.



69
70
71
72
73
74
75
# File 'lib/postproxy/types.rb', line 69

def initialize(**attrs)
  @platform_error_code = nil
  @platform_error_subcode = nil
  @platform_error_message = nil
  @postproxy_note = nil
  super
end

Instance Attribute Details

#platform_error_codeObject

Returns the value of attribute platform_error_code.



67
68
69
# File 'lib/postproxy/types.rb', line 67

def platform_error_code
  @platform_error_code
end

#platform_error_messageObject

Returns the value of attribute platform_error_message.



67
68
69
# File 'lib/postproxy/types.rb', line 67

def platform_error_message
  @platform_error_message
end

#platform_error_subcodeObject

Returns the value of attribute platform_error_subcode.



67
68
69
# File 'lib/postproxy/types.rb', line 67

def platform_error_subcode
  @platform_error_subcode
end

#postproxy_noteObject

Returns the value of attribute postproxy_note.



67
68
69
# File 'lib/postproxy/types.rb', line 67

def postproxy_note
  @postproxy_note
end