Class: Aws::DeviceFarm::Types::MonetaryAmount
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::MonetaryAmount
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
A number that represents the monetary amount for an offering or transaction.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#amount ⇒ Float
The numerical amount of an offering or transaction.
-
#currency_code ⇒ String
The currency code of a monetary amount.
Instance Attribute Details
#amount ⇒ Float
The numerical amount of an offering or transaction.
3786 3787 3788 3789 3790 3791 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3786 class MonetaryAmount < Struct.new( :amount, :currency_code) SENSITIVE = [] include Aws::Structure end |
#currency_code ⇒ String
The currency code of a monetary amount. For example, ‘USD` means U.S. dollars.
3786 3787 3788 3789 3790 3791 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3786 class MonetaryAmount < Struct.new( :amount, :currency_code) SENSITIVE = [] include Aws::Structure end |