Class: Aws::B2bi::Types::ConversionTargetFormatDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-b2bi/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.

Direct Known Subclasses

Unknown, X12

Defined Under Namespace

Classes: Unknown, X12

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



207
208
209
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 207

def unknown
  @unknown
end

#x12Types::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.

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.

Returns:



207
208
209
210
211
212
213
214
215
216
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 207

class ConversionTargetFormatDetails < Struct.new(
  :x12,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class X12 < ConversionTargetFormatDetails; end
  class Unknown < ConversionTargetFormatDetails; end
end