Class: Aws::B2bi::Types::X12Details

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

Instance Attribute Details

#transaction_setString

Returns an enumerated type where each value identifies an X12 transaction set. Transaction sets are maintained by the X12 Accredited Standards Committee.

Returns:

  • (String)


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

#versionString

Returns the version to use for the specified X12 transaction set.

Returns:

  • (String)


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