Class: Aws::SageMaker::Types::USD
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::USD
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Represents an amount of money in United States dollars.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cents ⇒ Integer
The fractional portion, in cents, of the amount.
-
#dollars ⇒ Integer
The whole number of dollars in the amount.
-
#tenth_fractions_of_a_cent ⇒ Integer
Fractions of a cent, in tenths.
Instance Attribute Details
#cents ⇒ Integer
The fractional portion, in cents, of the amount.
44835 44836 44837 44838 44839 44840 44841 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44835 class USD < Struct.new( :dollars, :cents, :tenth_fractions_of_a_cent) SENSITIVE = [] include Aws::Structure end |