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
|
# 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):
"""The X12 delimiter override settings.
All required parameters must be populated in order to send to Azure.
:param protocol_version: The protocol version.
:type protocol_version: str
:param message_id: The message id.
:type message_id: str
:param data_element_separator: Required. The data element separator.
:type data_element_separator: int
:param component_separator: Required. The component separator.
:type component_separator: int
:param segment_terminator: Required. The segment terminator.
:type segment_terminator: int
:param segment_terminator_suffix: Required. The segment terminator suffix.
Possible values include: 'NotSpecified', 'None', 'CR', 'LF', 'CRLF'
:type segment_terminator_suffix: str or
~azure.mgmt.logic.models.SegmentTerminatorSuffix
:param replace_character: Required. The replacement character.
:type replace_character: int
:param replace_separators_in_payload: Required. 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
"""
_validation = {
'data_element_separator': {'required': True},
'component_separator': {'required': True},
'segment_terminator': {'required': True},
'segment_terminator_suffix': {'required': True},
'replace_character': {'required': True},
'replace_separators_in_payload': {'required': True},
}
_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, **kwargs):
super(X12DelimiterOverrides, self).__init__(**kwargs)
self.protocol_version = kwargs.get('protocol_version', None)
self.message_id = kwargs.get('message_id', None)
self.data_element_separator = kwargs.get('data_element_separator', None)
self.component_separator = kwargs.get('component_separator', None)
self.segment_terminator = kwargs.get('segment_terminator', None)
self.segment_terminator_suffix = kwargs.get('segment_terminator_suffix', None)
self.replace_character = kwargs.get('replace_character', None)
self.replace_separators_in_payload = kwargs.get('replace_separators_in_payload', None)
self.target_namespace = kwargs.get('target_namespace', None)
|