class Azure::Logic::Mgmt::V2016_06_01::Models::Response
A response.
Attributes
body_link[RW]
@return [ContentLink] Details on the location of the body content.
headers[RW]
@return A list of all the headers attached to the response.
status_code[RW]
@return [Integer] The status code of the response.
Public Class Methods
mapper()
click to toggle source
Mapper for Response
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-06-01/generated/azure_mgmt_logic/models/response.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Response', type: { name: 'Composite', class_name: 'Response', model_properties: { headers: { client_side_validation: true, required: false, serialized_name: 'headers', type: { name: 'Object' } }, status_code: { client_side_validation: true, required: false, serialized_name: 'statusCode', type: { name: 'Number' } }, body_link: { client_side_validation: true, required: false, serialized_name: 'bodyLink', type: { name: 'Composite', class_name: 'ContentLink' } } } } } end