Class: Aws::PartnerCentralSelling::Types::MonetaryValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::MonetaryValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-partnercentralselling/types.rb
Overview
Specifies payments details.
Constant Summary collapse
- SENSITIVE =
[:currency_code]
Instance Attribute Summary collapse
-
#amount ⇒ String
Specifies the payment amount.
-
#currency_code ⇒ String
Specifies the payment currency.
Instance Attribute Details
#amount ⇒ String
Specifies the payment amount.
5169 5170 5171 5172 5173 5174 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 5169 class MonetaryValue < Struct.new( :amount, :currency_code) SENSITIVE = [:currency_code] include Aws::Structure end |
#currency_code ⇒ String
Specifies the payment currency. Accepted values are USD (US
Dollars) and EUR (Euros). If the AWS Partition is aws-eusc (AWS
European Sovereign Cloud), the currency code must be EUR.
5169 5170 5171 5172 5173 5174 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 5169 class MonetaryValue < Struct.new( :amount, :currency_code) SENSITIVE = [:currency_code] include Aws::Structure end |