Class: Aws::B2bi::Types::FormatOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::FormatOptions
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
FormatOptions is a union - when making an API calls you must set exactly one of the members.
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.
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
879 880 881 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 879 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.
879 880 881 882 883 884 885 886 887 888 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 879 class FormatOptions < Struct.new( :x12, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class X12 < FormatOptions; end class Unknown < FormatOptions; end end |