class Google::Apis::ApigeeV1::GoogleCloudApigeeV1CreditDeveloperBalanceRequest

Request for CreditDeveloperBalance.

Attributes

transaction_amount[RW]

Represents an amount of money with its currency type. Corresponds to the JSON property `transactionAmount` @return [Google::Apis::ApigeeV1::GoogleTypeMoney]

transaction_id[RW]

Each transaction_id uniquely identifies a credit balance request. If multiple requests are received with the same transaction_id, only one of them will be considered. Corresponds to the JSON property `transactionId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 1561
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 1566
def update!(**args)
  @transaction_amount = args[:transaction_amount] if args.key?(:transaction_amount)
  @transaction_id = args[:transaction_id] if args.key?(:transaction_id)
end