Class: Aws::B2bi::Types::X12Delimiters

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

Instance Attribute Details

#component_separatorString

The component, or sub-element, separator. The default value is : (colon).

Returns:

  • (String)


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_separatorString

The data element separator. The default value is * (asterisk).

Returns:

  • (String)


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_terminatorString

The segment terminator. The default value is ~ (tilde).

Returns:

  • (String)


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