Class: Azure::Logic::Mgmt::V2016_06_01::Models::EdifactProcessingSettings

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

Class Method Summary collapse

Instance Attribute Details

#create_empty_xml_tags_for_trailing_separatorsBoolean

for trailing separators.

Returns:

  • (Boolean)

    The value indicating whether to create empty xml tags



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
  @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/edifact_processing_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.



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_errorBoolean

on error.

Returns:

  • (Boolean)

    The value indicating whether to suspend interchange



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_separatorBoolean

separator.

Returns:

  • (Boolean)

    The value indicating whether to use dot as decimal



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

.mapperObject

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