Class: Aws::PartnerCentralBenefits::Types::MonetaryValue

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#amountString

The numeric amount of the monetary value.

Returns:

  • (String)


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_codeString

The ISO 4217 currency code (e.g., USD, EUR) for the monetary amount.

Returns:

  • (String)


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