Class: Azure::Graph::Mgmt::V1_6::Models::GraphError
- Inherits:
-
Object
- Object
- Azure::Graph::Mgmt::V1_6::Models::GraphError
- Includes:
- MsRestAzure
- Defined in:
- lib/1.6/generated/azure_mgmt_graph/models/graph_error.rb
Overview
Active Directory error information.
Instance Attribute Summary collapse
-
#code ⇒ String
Error code.
-
#message ⇒ String
Error message value.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GraphError class as Ruby Hash.
Instance Attribute Details
#code ⇒ String
Returns Error code.
16 17 18 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/graph_error.rb', line 16 def code @code end |
#message ⇒ String
Returns Error message value.
19 20 21 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/graph_error.rb', line 19 def @message end |
Class Method Details
.mapper ⇒ Object
Mapper for GraphError class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/graph_error.rb', line 26 def self.mapper() { required: false, serialized_name: 'GraphError', type: { name: 'Composite', class_name: 'GraphError', model_properties: { code: { required: false, serialized_name: 'odata\\.error.code', type: { name: 'String' } }, message: { required: false, serialized_name: 'odata\\.error.message.value', type: { name: 'String' } } } } } end |