Class: Google::Apis::DisplayvideoV3::BudgetSummary

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb

Overview

Summarized information of an individual campaign budget.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BudgetSummary

Returns a new instance of BudgetSummary.



2114
2115
2116
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 2114

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#external_budget_idString

Corresponds to the external_budget_id of a campaign budget. If the value is not set in the campaign budget, this field will be empty. Corresponds to the JSON property externalBudgetId

Returns:

  • (String)


2085
2086
2087
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 2085

def external_budget_id
  @external_budget_id
end

#pre_tax_amount_microsFixnum

The sum of charges made under this budget before taxes, in micros of the invoice's currency. For example, if currency_code is USD, then 1000000 represents one US dollar. Corresponds to the JSON property preTaxAmountMicros

Returns:

  • (Fixnum)


2092
2093
2094
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 2092

def pre_tax_amount_micros
  @pre_tax_amount_micros
end

#prisma_cpe_codeGoogle::Apis::DisplayvideoV3::PrismaCpeCode

Google Payments Center supports searching and filtering on the component fields of this code. Corresponds to the JSON property prismaCpeCode



2098
2099
2100
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 2098

def prisma_cpe_code
  @prisma_cpe_code
end

#tax_amount_microsFixnum

The amount of tax applied to charges under this budget, in micros of the invoice's currency. For example, if currency_code is USD, then 1000000 represents one US dollar. Corresponds to the JSON property taxAmountMicros

Returns:

  • (Fixnum)


2105
2106
2107
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 2105

def tax_amount_micros
  @tax_amount_micros
end

#total_amount_microsFixnum

The total sum of charges made under this budget, including tax, in micros of the invoice's currency. For example, if currency_code is USD, then 1000000 represents one US dollar. Corresponds to the JSON property totalAmountMicros

Returns:

  • (Fixnum)


2112
2113
2114
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 2112

def total_amount_micros
  @total_amount_micros
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2119
2120
2121
2122
2123
2124
2125
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 2119

def update!(**args)
  @external_budget_id = args[:external_budget_id] if args.key?(:external_budget_id)
  @pre_tax_amount_micros = args[:pre_tax_amount_micros] if args.key?(:pre_tax_amount_micros)
  @prisma_cpe_code = args[:prisma_cpe_code] if args.key?(:prisma_cpe_code)
  @tax_amount_micros = args[:tax_amount_micros] if args.key?(:tax_amount_micros)
  @total_amount_micros = args[:total_amount_micros] if args.key?(:total_amount_micros)
end