Class: Aws::MarketplaceAgreement::Types::PaymentScheduleTerm
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceAgreement::Types::PaymentScheduleTerm
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-marketplaceagreement/types.rb
Overview
Defines an installment-based pricing model where customers are charged a fixed price on different dates during the agreement validity period. This is used most commonly for flexible payment schedule pricing.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#currency_code ⇒ String
Defines the currency for the prices mentioned in the term.
-
#schedule ⇒ Array<Types::ScheduleItem>
List of the payment schedule where each element defines one installment of payment.
-
#type ⇒ String
Type of the term.
Instance Attribute Details
#currency_code ⇒ String
Defines the currency for the prices mentioned in the term.
762 763 764 765 766 767 768 |
# File 'lib/aws-sdk-marketplaceagreement/types.rb', line 762 class PaymentScheduleTerm < Struct.new( :currency_code, :schedule, :type) SENSITIVE = [] include Aws::Structure end |
#schedule ⇒ Array<Types::ScheduleItem>
List of the payment schedule where each element defines one installment of payment. It contains the information necessary for calculating the price.
762 763 764 765 766 767 768 |
# File 'lib/aws-sdk-marketplaceagreement/types.rb', line 762 class PaymentScheduleTerm < Struct.new( :currency_code, :schedule, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Type of the term.
762 763 764 765 766 767 768 |
# File 'lib/aws-sdk-marketplaceagreement/types.rb', line 762 class PaymentScheduleTerm < Struct.new( :currency_code, :schedule, :type) SENSITIVE = [] include Aws::Structure end |