# 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_3_0_9 module Models # # Provides details about the remote replicators from the primary # replicator's point of view. # class RemoteReplicatorAcknowledgementStatus include MsRestAzure # @return [RemoteReplicatorAcknowledgementDetail] Details about the # acknowledgements for operations that are part of the replication stream # data. attr_accessor :replication_stream_acknowledgement_detail # @return [RemoteReplicatorAcknowledgementDetail] Details about the # acknowledgements for operations that are part of the copy stream data. attr_accessor :copy_stream_acknowledgement_detail # # Mapper for RemoteReplicatorAcknowledgementStatus class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RemoteReplicatorAcknowledgementStatus', type: { name: 'Composite', class_name: 'RemoteReplicatorAcknowledgementStatus', model_properties: { replication_stream_acknowledgement_detail: { client_side_validation: true, required: false, serialized_name: 'ReplicationStreamAcknowledgementDetail', type: { name: 'Composite', class_name: 'RemoteReplicatorAcknowledgementDetail' } }, copy_stream_acknowledgement_detail: { client_side_validation: true, required: false, serialized_name: 'CopyStreamAcknowledgementDetail', type: { name: 'Composite', class_name: 'RemoteReplicatorAcknowledgementDetail' } } } } } end end end end