# 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::ServiceFabric::V6_5_0_36 module Models # # Information about the results of a property batch. # class PropertyBatchInfo include MsRestAzure @@discriminatorMap = Hash.new @@discriminatorMap["Successful"] = "SuccessfulPropertyBatchInfo" @@discriminatorMap["Failed"] = "FailedPropertyBatchInfo" def initialize @Kind = "PropertyBatchInfo" end attr_accessor :Kind # # Mapper for PropertyBatchInfo class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PropertyBatchInfo', type: { name: 'Composite', polymorphic_discriminator: 'Kind', uber_parent: 'PropertyBatchInfo', class_name: 'PropertyBatchInfo', model_properties: { } } } end end end end