Class: Azure::Logic::Mgmt::V2016_06_01::Models::X12ProcessingSettings

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#convert_implied_decimalBoolean

type to implied decimal.

Returns:

  • (Boolean)

    The value indicating whether to convert numerical



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_separatorsBoolean

for trailing separators.

Returns:

  • (Boolean)

    The value indicating whether to create empty xml tags



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
  @create_empty_xml_tags_for_trailing_separators
end

#mask_security_infoBoolean

information.

Returns:

  • (Boolean)

    The value indicating whether to mask security



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_interchangeBoolean

Returns The value indicating whether to preserve interchange.

Returns:

  • (Boolean)

    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_errorBoolean

on error.

Returns:

  • (Boolean)

    The value indicating whether to suspend interchange



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_separatorBoolean

separator.

Returns:

  • (Boolean)

    The value indicating whether to use dot as decimal



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

.mapperObject

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