Class: Aws::B2bi::Types::FormatOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-b2bi/types.rb

Overview

Note:

FormatOptions is a union - when making an API calls you must set exactly one of the members.

Note:

FormatOptions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FormatOptions corresponding to the set member.

A structure that contains the X12 transaction set and version.

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



857
858
859
# File 'lib/aws-sdk-b2bi/types.rb', line 857

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.

<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>

Returns:



857
858
859
860
861
862
863
864
865
866
# File 'lib/aws-sdk-b2bi/types.rb', line 857

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

  class X12 < FormatOptions; end
  class Unknown < FormatOptions; end
end