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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-partnercentralselling/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)


4850
4851
4852
4853
4854
4855
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 4850

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)


4850
4851
4852
4853
4854
4855
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 4850

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