Class: Aws::B2bi::Types::X12Details
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::X12Details
- Defined in:
- gems/aws-sdk-b2bi/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.
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.
2692 2693 2694 2695 2696 2697 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2692 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.
2692 2693 2694 2695 2696 2697 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2692 class X12Details < Struct.new( :transaction_set, :version) SENSITIVE = [] include Aws::Structure end |