Class: Azure::Web::Mgmt::V2016_03_01::Models::DefaultErrorResponse
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2016_03_01::Models::DefaultErrorResponse
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/generated/azure_mgmt_web/models/default_error_response.rb
Overview
App Service error response.
Instance Attribute Summary collapse
-
#error ⇒ DefaultErrorResponseError
Error model.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DefaultErrorResponse class as Ruby Hash.
Instance Attribute Details
#error ⇒ DefaultErrorResponseError
Returns Error model.
16 17 18 |
# File 'lib/2016-03-01/generated/azure_mgmt_web/models/default_error_response.rb', line 16 def error @error end |
Class Method Details
.mapper ⇒ Object
Mapper for DefaultErrorResponse class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/2016-03-01/generated/azure_mgmt_web/models/default_error_response.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DefaultErrorResponse', type: { name: 'Composite', class_name: 'DefaultErrorResponse', model_properties: { error: { client_side_validation: true, required: false, read_only: true, serialized_name: 'error', type: { name: 'Composite', class_name: 'DefaultErrorResponseError' } } } } } end |