Class: Aws::PartnerCentralBenefits::Types::FulfillmentDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralBenefits::Types::FulfillmentDetails
- Defined in:
- gems/aws-sdk-partnercentralbenefits/lib/aws-sdk-partnercentralbenefits/types.rb
Overview
FulfillmentDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FulfillmentDetails corresponding to the set member.
Contains comprehensive information about how a benefit allocation is fulfilled across different fulfillment types.
Direct Known Subclasses
AccessDetails, ConsumableDetails, CreditDetails, DisbursementDetails, Unknown
Defined Under Namespace
Classes: AccessDetails, ConsumableDetails, CreditDetails, DisbursementDetails, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_details ⇒ Types::AccessDetails
Details about access-based fulfillment, if applicable to this benefit allocation.
-
#consumable_details ⇒ Types::ConsumableDetails
Details about consumable-based fulfillment, if applicable to this benefit allocation.
-
#credit_details ⇒ Types::CreditDetails
Details about credit-based fulfillment, if applicable to this benefit allocation.
-
#disbursement_details ⇒ Types::DisbursementDetails
Details about disbursement-based fulfillment, if applicable to this benefit allocation.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#access_details ⇒ Types::AccessDetails
Details about access-based fulfillment, if applicable to this benefit allocation.
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 |
# File 'gems/aws-sdk-partnercentralbenefits/lib/aws-sdk-partnercentralbenefits/types.rb', line 844 class FulfillmentDetails < Struct.new( :disbursement_details, :consumable_details, :credit_details, :access_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DisbursementDetails < FulfillmentDetails; end class ConsumableDetails < FulfillmentDetails; end class CreditDetails < FulfillmentDetails; end class AccessDetails < FulfillmentDetails; end class Unknown < FulfillmentDetails; end end |
#consumable_details ⇒ Types::ConsumableDetails
Details about consumable-based fulfillment, if applicable to this benefit allocation.
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 |
# File 'gems/aws-sdk-partnercentralbenefits/lib/aws-sdk-partnercentralbenefits/types.rb', line 844 class FulfillmentDetails < Struct.new( :disbursement_details, :consumable_details, :credit_details, :access_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DisbursementDetails < FulfillmentDetails; end class ConsumableDetails < FulfillmentDetails; end class CreditDetails < FulfillmentDetails; end class AccessDetails < FulfillmentDetails; end class Unknown < FulfillmentDetails; end end |
#credit_details ⇒ Types::CreditDetails
Details about credit-based fulfillment, if applicable to this benefit allocation.
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 |
# File 'gems/aws-sdk-partnercentralbenefits/lib/aws-sdk-partnercentralbenefits/types.rb', line 844 class FulfillmentDetails < Struct.new( :disbursement_details, :consumable_details, :credit_details, :access_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DisbursementDetails < FulfillmentDetails; end class ConsumableDetails < FulfillmentDetails; end class CreditDetails < FulfillmentDetails; end class AccessDetails < FulfillmentDetails; end class Unknown < FulfillmentDetails; end end |
#disbursement_details ⇒ Types::DisbursementDetails
Details about disbursement-based fulfillment, if applicable to this benefit allocation.
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 |
# File 'gems/aws-sdk-partnercentralbenefits/lib/aws-sdk-partnercentralbenefits/types.rb', line 844 class FulfillmentDetails < Struct.new( :disbursement_details, :consumable_details, :credit_details, :access_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DisbursementDetails < FulfillmentDetails; end class ConsumableDetails < FulfillmentDetails; end class CreditDetails < FulfillmentDetails; end class AccessDetails < FulfillmentDetails; end class Unknown < FulfillmentDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
844 845 846 |
# File 'gems/aws-sdk-partnercentralbenefits/lib/aws-sdk-partnercentralbenefits/types.rb', line 844 def unknown @unknown end |