Class: Azure::Logic::Mgmt::V2016_06_01::Models::EdifactProcessingSettings
- Inherits:
-
Object
- Object
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactProcessingSettings
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-06-01/generated/azure_mgmt_logic/models/edifact_processing_settings.rb
Overview
The Edifact agreement protocol settings.
Instance Attribute Summary collapse
-
#create_empty_xml_tags_for_trailing_separators ⇒ Boolean
for trailing separators.
-
#mask_security_info ⇒ Boolean
information.
-
#preserve_interchange ⇒ Boolean
The value indicating whether to preserve interchange.
-
#suspend_interchange_on_error ⇒ Boolean
on error.
-
#use_dot_as_decimal_separator ⇒ Boolean
separator.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for EdifactProcessingSettings class as Ruby Hash.
Instance Attribute Details
#create_empty_xml_tags_for_trailing_separators ⇒ Boolean
for trailing separators.
28 29 30 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/edifact_processing_settings.rb', line 28 def @create_empty_xml_tags_for_trailing_separators end |
#mask_security_info ⇒ Boolean
information.
17 18 19 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/edifact_processing_settings.rb', line 17 def mask_security_info @mask_security_info end |
#preserve_interchange ⇒ Boolean
Returns The value indicating whether to preserve interchange.
20 21 22 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/edifact_processing_settings.rb', line 20 def preserve_interchange @preserve_interchange end |
#suspend_interchange_on_error ⇒ Boolean
on error.
24 25 26 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/edifact_processing_settings.rb', line 24 def suspend_interchange_on_error @suspend_interchange_on_error end |
#use_dot_as_decimal_separator ⇒ Boolean
separator.
32 33 34 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/edifact_processing_settings.rb', line 32 def use_dot_as_decimal_separator @use_dot_as_decimal_separator end |
Class Method Details
.mapper ⇒ Object
Mapper for EdifactProcessingSettings class as Ruby Hash. This will be used for serialization/deserialization.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/edifact_processing_settings.rb', line 39 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 |