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
|
# 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 X12DelimiterOverrides(Model):
"""X12DelimiterOverrides.
:param protocol_version: The protocol version.
:type protocol_version: str
:param message_id: The message id.
:type message_id: 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 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 replace_character: The replacement character.
:type replace_character: int
:param replace_separators_in_payload: The value indicating whether to
replace separators in payload.
:type replace_separators_in_payload: bool
:param target_namespace: The target namespace on which this delimiter
settings has to be applied.
:type target_namespace: str
"""
_attribute_map = {
'protocol_version': {'key': 'protocolVersion', 'type': 'str'},
'message_id': {'key': 'messageId', 'type': 'str'},
'data_element_separator': {'key': 'dataElementSeparator', 'type': 'int'},
'component_separator': {'key': 'componentSeparator', 'type': 'int'},
'segment_terminator': {'key': 'segmentTerminator', 'type': 'int'},
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'SegmentTerminatorSuffix'},
'replace_character': {'key': 'replaceCharacter', 'type': 'int'},
'replace_separators_in_payload': {'key': 'replaceSeparatorsInPayload', 'type': 'bool'},
'target_namespace': {'key': 'targetNamespace', 'type': 'str'},
}
def __init__(self, protocol_version=None, message_id=None, data_element_separator=None, component_separator=None, segment_terminator=None, segment_terminator_suffix=None, replace_character=None, replace_separators_in_payload=None, target_namespace=None):
self.protocol_version = protocol_version
self.message_id = message_id
self.data_element_separator = data_element_separator
self.component_separator = component_separator
self.segment_terminator = segment_terminator
self.segment_terminator_suffix = segment_terminator_suffix
self.replace_character = replace_character
self.replace_separators_in_payload = replace_separators_in_payload
self.target_namespace = target_namespace
|