Class: Aws::B2bi::Types::EdiType
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::EdiType
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
EdiType is a union - when making an API calls you must set exactly one of the members.
EdiType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EdiType corresponding to the set member.
Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.
Direct Known Subclasses
Defined Under Namespace
Classes: Unknown, X12Details
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#x12_details ⇒ Types::X12Details
Returns the details for the EDI standard that is being used for the transformer.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
826 827 828 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 826 def unknown @unknown end |
#x12_details ⇒ Types::X12Details
Returns the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.
826 827 828 829 830 831 832 833 834 835 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 826 class EdiType < Struct.new( :x12_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class X12Details < EdiType; end class Unknown < EdiType; end end |