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

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

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.

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)


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

#versionString

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

Returns:

  • (String)


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