class Azure::Logic::Mgmt::V2016_06_01::Models::JsonSchema
The JSON schema.
Attributes
content[RW]
@return [String] The JSON content.
title[RW]
@return [String] The JSON title.
Public Class Methods
mapper()
click to toggle source
Mapper for JsonSchema
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-06-01/generated/azure_mgmt_logic/models/json_schema.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'JsonSchema', type: { name: 'Composite', class_name: 'JsonSchema', model_properties: { title: { client_side_validation: true, required: false, serialized_name: 'title', type: { name: 'String' } }, content: { client_side_validation: true, required: false, serialized_name: 'content', type: { name: 'String' } } } } } end