Class: Aws::B2bi::Types::ConversionTargetFormatDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::ConversionTargetFormatDetails
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-b2bi/types.rb
Overview
Note:
ConversionTargetFormatDetails is a union - when making an API calls you must set exactly one of the members.
Contains a structure describing the X12 details for the conversion target.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#x12 ⇒ Types::X12Details
A structure that contains the X12 transaction set and version.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
185 186 187 |
# File 'lib/aws-sdk-b2bi/types.rb', line 185 def unknown @unknown end |
#x12 ⇒ Types::X12Details
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>
185 186 187 188 189 190 191 192 193 194 |
# File 'lib/aws-sdk-b2bi/types.rb', line 185 class ConversionTargetFormatDetails < Struct.new( :x12, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class X12 < ConversionTargetFormatDetails; end class Unknown < ConversionTargetFormatDetails; end end |