# 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::Logic::Mgmt::V2018_07_01_preview module Models # # The AS2 agreement acknowledgement connection settings. # class AS2AcknowledgementConnectionSettings include MsRestAzure # @return [Boolean] The value indicating whether to ignore mismatch in # certificate name. attr_accessor :ignore_certificate_name_mismatch # @return [Boolean] The value indicating whether to support HTTP status # code 'CONTINUE'. attr_accessor :support_http_status_code_continue # @return [Boolean] The value indicating whether to keep the connection # alive. attr_accessor :keep_http_connection_alive # @return [Boolean] The value indicating whether to unfold the HTTP # headers. attr_accessor :unfold_http_headers # # Mapper for AS2AcknowledgementConnectionSettings class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AS2AcknowledgementConnectionSettings', type: { name: 'Composite', class_name: 'AS2AcknowledgementConnectionSettings', model_properties: { ignore_certificate_name_mismatch: { client_side_validation: true, required: true, serialized_name: 'ignoreCertificateNameMismatch', type: { name: 'Boolean' } }, support_http_status_code_continue: { client_side_validation: true, required: true, serialized_name: 'supportHttpStatusCodeContinue', type: { name: 'Boolean' } }, keep_http_connection_alive: { client_side_validation: true, required: true, serialized_name: 'keepHttpConnectionAlive', type: { name: 'Boolean' } }, unfold_http_headers: { client_side_validation: true, required: true, serialized_name: 'unfoldHttpHeaders', type: { name: 'Boolean' } } } } } end end end end