Class: Azure::Logic::Mgmt::V2016_06_01::Models::X12ProcessingSettings
- Inherits:
-
Object
- Object
- Azure::Logic::Mgmt::V2016_06_01::Models::X12ProcessingSettings
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-06-01/generated/azure_mgmt_logic/models/x12processing_settings.rb
Overview
The X12 processing settings.
Instance Attribute Summary collapse
-
#convert_implied_decimal ⇒ Boolean
type to implied decimal.
-
#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 X12ProcessingSettings class as Ruby Hash.
Instance Attribute Details
#convert_implied_decimal ⇒ Boolean
type to implied decimal.
21 22 23 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/x12processing_settings.rb', line 21 def convert_implied_decimal @convert_implied_decimal end |
#create_empty_xml_tags_for_trailing_separators ⇒ Boolean
for trailing separators.
32 33 34 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/x12processing_settings.rb', line 32 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/x12processing_settings.rb', line 17 def mask_security_info @mask_security_info end |
#preserve_interchange ⇒ Boolean
Returns The value indicating whether to preserve interchange.
24 25 26 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/x12processing_settings.rb', line 24 def preserve_interchange @preserve_interchange end |
#suspend_interchange_on_error ⇒ Boolean
on error.
28 29 30 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/x12processing_settings.rb', line 28 def suspend_interchange_on_error @suspend_interchange_on_error end |
#use_dot_as_decimal_separator ⇒ Boolean
separator.
36 37 38 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/x12processing_settings.rb', line 36 def use_dot_as_decimal_separator @use_dot_as_decimal_separator end |
Class Method Details
.mapper ⇒ Object
Mapper for X12ProcessingSettings class as Ruby Hash. This will be used for serialization/deserialization.
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 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/x12processing_settings.rb', line 43 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'X12ProcessingSettings', type: { name: 'Composite', class_name: 'X12ProcessingSettings', model_properties: { mask_security_info: { client_side_validation: true, required: true, serialized_name: 'maskSecurityInfo', type: { name: 'Boolean' } }, convert_implied_decimal: { client_side_validation: true, required: true, serialized_name: 'convertImpliedDecimal', 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 |