Class: Aws::B2bi::Types::X12Details
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::X12Details
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-b2bi/types.rb
Overview
A structure that contains the X12 transaction set and version. The X12 structure is used when the system transforms an EDI (electronic data interchange) file.
<note markdown=“1”> If an EDI input file contains more than one transaction, each transaction must have the same transaction set and version, for example 214/4010. If not, the transformer cannot parse the file.
</note>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#transaction_set ⇒ String
Returns an enumerated type where each value identifies an X12 transaction set.
-
#version ⇒ String
Returns the version to use for the specified X12 transaction set.
Instance Attribute Details
#transaction_set ⇒ String
Returns an enumerated type where each value identifies an X12 transaction set. Transaction sets are maintained by the X12 Accredited Standards Committee.
2735 2736 2737 2738 2739 2740 |
# File 'lib/aws-sdk-b2bi/types.rb', line 2735 class X12Details < Struct.new( :transaction_set, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
Returns the version to use for the specified X12 transaction set.
2735 2736 2737 2738 2739 2740 |
# File 'lib/aws-sdk-b2bi/types.rb', line 2735 class X12Details < Struct.new( :transaction_set, :version) SENSITIVE = [] include Aws::Structure end |