Class: Aws::PartnerCentralBenefits::Types::MonetaryValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralBenefits::Types::MonetaryValue
- Defined in:
- gems/aws-sdk-partnercentralbenefits/lib/aws-sdk-partnercentralbenefits/types.rb
Overview
Represents a monetary amount with its associated currency.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#amount ⇒ String
The numeric amount of the monetary value.
-
#currency_code ⇒ String
The ISO 4217 currency code (e.g., USD, EUR) for the monetary amount.
Instance Attribute Details
#amount ⇒ String
The numeric amount of the monetary value.
1449 1450 1451 1452 1453 1454 |
# File 'gems/aws-sdk-partnercentralbenefits/lib/aws-sdk-partnercentralbenefits/types.rb', line 1449 class MonetaryValue < Struct.new( :amount, :currency_code) SENSITIVE = [] include Aws::Structure end |
#currency_code ⇒ String
The ISO 4217 currency code (e.g., USD, EUR) for the monetary amount.
1449 1450 1451 1452 1453 1454 |
# File 'gems/aws-sdk-partnercentralbenefits/lib/aws-sdk-partnercentralbenefits/types.rb', line 1449 class MonetaryValue < Struct.new( :amount, :currency_code) SENSITIVE = [] include Aws::Structure end |