Class: Aws::PartnerCentralSelling::Types::MonetaryValue

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-partnercentralselling/types.rb

Overview

Specifies payments details.

Constant Summary collapse

SENSITIVE =
[:currency_code]

Instance Attribute Summary collapse

Instance Attribute Details

#amountString

Specifies the payment amount.

Returns:

  • (String)


4877
4878
4879
4880
4881
4882
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 4877

class MonetaryValue < Struct.new(
  :amount,
  :currency_code)
  SENSITIVE = [:currency_code]
  include Aws::Structure
end

#currency_codeString

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`.

Returns:

  • (String)


4877
4878
4879
4880
4881
4882
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 4877

class MonetaryValue < Struct.new(
  :amount,
  :currency_code)
  SENSITIVE = [:currency_code]
  include Aws::Structure
end