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)


3884
3885
3886
3887
3888
3889
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 3884

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

#currency_codeString

Specifies the payment currency.

Returns:

  • (String)


3884
3885
3886
3887
3888
3889
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 3884

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