Class: Aws::B2bi::Types::X12Delimiters
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::X12Delimiters
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
In X12 EDI messages, delimiters are used to mark the end of segments or elements, and are defined in the interchange control header. The delimiters are part of the message's syntax and divide up its different elements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_separator ⇒ String
The component, or sub-element, separator.
-
#data_element_separator ⇒ String
The data element separator.
-
#segment_terminator ⇒ String
The segment terminator.
Instance Attribute Details
#component_separator ⇒ String
The component, or sub-element, separator. The default value is :
(colon).
2662 2663 2664 2665 2666 2667 2668 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2662 class X12Delimiters < Struct.new( :component_separator, :data_element_separator, :segment_terminator) SENSITIVE = [] include Aws::Structure end |
#data_element_separator ⇒ String
The data element separator. The default value is *
(asterisk).
2662 2663 2664 2665 2666 2667 2668 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2662 class X12Delimiters < Struct.new( :component_separator, :data_element_separator, :segment_terminator) SENSITIVE = [] include Aws::Structure end |
#segment_terminator ⇒ String
The segment terminator. The default value is ~
(tilde).
2662 2663 2664 2665 2666 2667 2668 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2662 class X12Delimiters < Struct.new( :component_separator, :data_element_separator, :segment_terminator) SENSITIVE = [] include Aws::Structure end |