# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Resources::Mgmt::V2020_06_01 module Models # # Model object. # # class ApiProfile include MsRestAzure # @return [String] The profile version. attr_accessor :profile_version # @return [String] The API version. attr_accessor :api_version # # Mapper for ApiProfile class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApiProfile', type: { name: 'Composite', class_name: 'ApiProfile', model_properties: { profile_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'profileVersion', type: { name: 'String' } }, api_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'apiVersion', type: { name: 'String' } } } } } end end end end