# 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::V2016_06_01 module Models # # The Edifact agreement protocol settings. # class EdifactProcessingSettings include MsRestAzure # @return [Boolean] The value indicating whether to mask security # information. attr_accessor :mask_security_info # @return [Boolean] The value indicating whether to preserve interchange. attr_accessor :preserve_interchange # @return [Boolean] The value indicating whether to suspend interchange # on error. attr_accessor :suspend_interchange_on_error # @return [Boolean] The value indicating whether to create empty xml tags # for trailing separators. attr_accessor :create_empty_xml_tags_for_trailing_separators # @return [Boolean] The value indicating whether to use dot as decimal # separator. attr_accessor :use_dot_as_decimal_separator # # Mapper for EdifactProcessingSettings class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EdifactProcessingSettings', type: { name: 'Composite', class_name: 'EdifactProcessingSettings', model_properties: { mask_security_info: { client_side_validation: true, required: true, serialized_name: 'maskSecurityInfo', type: { name: 'Boolean' } }, preserve_interchange: { client_side_validation: true, required: true, serialized_name: 'preserveInterchange', type: { name: 'Boolean' } }, suspend_interchange_on_error: { client_side_validation: true, required: true, serialized_name: 'suspendInterchangeOnError', type: { name: 'Boolean' } }, create_empty_xml_tags_for_trailing_separators: { client_side_validation: true, required: true, serialized_name: 'createEmptyXmlTagsForTrailingSeparators', type: { name: 'Boolean' } }, use_dot_as_decimal_separator: { client_side_validation: true, required: true, serialized_name: 'useDotAsDecimalSeparator', type: { name: 'Boolean' } } } } } end end end end