1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 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
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class EdifactDelimiterOverride(Model):
"""EdifactDelimiterOverride.
:param message_id: The message id.
:type message_id: str
:param message_version: The message version.
:type message_version: str
:param message_release: The message releaseversion.
:type message_release: str
:param data_element_separator: The data element separator.
:type data_element_separator: int
:param component_separator: The component separator.
:type component_separator: int
:param segment_terminator: The segment terminator.
:type segment_terminator: int
:param repetition_separator: The repetition separator.
:type repetition_separator: int
:param segment_terminator_suffix: The segment terminator suffix. Possible
values include: 'NotSpecified', 'None', 'CR', 'LF', 'CRLF'
:type segment_terminator_suffix: str or :class:`SegmentTerminatorSuffix
<azure.mgmt.logic.models.SegmentTerminatorSuffix>`
:param decimal_point_indicator: The decimal point indicator. Possible
values include: 'NotSpecified', 'Comma', 'Decimal'
:type decimal_point_indicator: str or :class:`EdifactDecimalIndicator
<azure.mgmt.logic.models.EdifactDecimalIndicator>`
:param release_indicator: The release indicator.
:type release_indicator: int
:param message_association_assigned_code: The message association
assigned code.
:type message_association_assigned_code: str
:param target_namespace: The target namespace on which this delimiter
settings has to be applied.
:type target_namespace: str
"""
_attribute_map = {
'message_id': {'key': 'messageId', 'type': 'str'},
'message_version': {'key': 'messageVersion', 'type': 'str'},
'message_release': {'key': 'messageRelease', 'type': 'str'},
'data_element_separator': {'key': 'dataElementSeparator', 'type': 'int'},
'component_separator': {'key': 'componentSeparator', 'type': 'int'},
'segment_terminator': {'key': 'segmentTerminator', 'type': 'int'},
'repetition_separator': {'key': 'repetitionSeparator', 'type': 'int'},
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'SegmentTerminatorSuffix'},
'decimal_point_indicator': {'key': 'decimalPointIndicator', 'type': 'EdifactDecimalIndicator'},
'release_indicator': {'key': 'releaseIndicator', 'type': 'int'},
'message_association_assigned_code': {'key': 'messageAssociationAssignedCode', 'type': 'str'},
'target_namespace': {'key': 'targetNamespace', 'type': 'str'},
}
def __init__(self, message_id=None, message_version=None, message_release=None, data_element_separator=None, component_separator=None, segment_terminator=None, repetition_separator=None, segment_terminator_suffix=None, decimal_point_indicator=None, release_indicator=None, message_association_assigned_code=None, target_namespace=None):
self.message_id = message_id
self.message_version = message_version
self.message_release = message_release
self.data_element_separator = data_element_separator
self.component_separator = component_separator
self.segment_terminator = segment_terminator
self.repetition_separator = repetition_separator
self.segment_terminator_suffix = segment_terminator_suffix
self.decimal_point_indicator = decimal_point_indicator
self.release_indicator = release_indicator
self.message_association_assigned_code = message_association_assigned_code
self.target_namespace = target_namespace
|