invoice.proto 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.ads.googleads.v12.resources;
  16. import "google/ads/googleads/v12/common/dates.proto";
  17. import "google/ads/googleads/v12/enums/invoice_type.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. option csharp_namespace = "Google.Ads.GoogleAds.V12.Resources";
  21. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/resources;resources";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "InvoiceProto";
  24. option java_package = "com.google.ads.googleads.v12.resources";
  25. option objc_class_prefix = "GAA";
  26. option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Resources";
  27. option ruby_package = "Google::Ads::GoogleAds::V12::Resources";
  28. // Proto file describing the Invoice resource.
  29. // An invoice. All invoice information is snapshotted to match the PDF invoice.
  30. // For invoices older than the launch of InvoiceService, the snapshotted
  31. // information may not match the PDF invoice.
  32. message Invoice {
  33. option (google.api.resource) = {
  34. type: "googleads.googleapis.com/Invoice"
  35. pattern: "customers/{customer_id}/invoices/{invoice_id}"
  36. };
  37. // Represents a summarized view at account level.
  38. // AccountSummary fields are accessible only to customers on the allow-list.
  39. message AccountSummary {
  40. // Output only. The account associated with the account summary.
  41. optional string customer = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  42. // Output only. Pretax billing correction subtotal amount, in micros.
  43. optional int64 billing_correction_subtotal_amount_micros = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  44. // Output only. Tax on billing correction, in micros.
  45. optional int64 billing_correction_tax_amount_micros = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  46. // Output only. Total billing correction amount, in micros.
  47. optional int64 billing_correction_total_amount_micros = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  48. // Output only. Pretax coupon adjustment subtotal amount, in micros.
  49. optional int64 coupon_adjustment_subtotal_amount_micros = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  50. // Output only. Tax on coupon adjustment, in micros.
  51. optional int64 coupon_adjustment_tax_amount_micros = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  52. // Output only. Total coupon adjustment amount, in micros.
  53. optional int64 coupon_adjustment_total_amount_micros = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
  54. // Output only. Pretax excess credit adjustment subtotal amount, in micros.
  55. optional int64 excess_credit_adjustment_subtotal_amount_micros = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
  56. // Output only. Tax on excess credit adjustment, in micros.
  57. optional int64 excess_credit_adjustment_tax_amount_micros = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  58. // Output only. Total excess credit adjustment amount, in micros.
  59. optional int64 excess_credit_adjustment_total_amount_micros = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
  60. // Output only. Pretax regulatory costs subtotal amount, in micros.
  61. optional int64 regulatory_costs_subtotal_amount_micros = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
  62. // Output only. Tax on regulatory costs, in micros.
  63. optional int64 regulatory_costs_tax_amount_micros = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
  64. // Output only. Total regulatory costs amount, in micros.
  65. optional int64 regulatory_costs_total_amount_micros = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
  66. // Output only. Total pretax subtotal amount attributable to the account during the
  67. // service period, in micros.
  68. optional int64 subtotal_amount_micros = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
  69. // Output only. Total tax amount attributable to the account during the service period,
  70. // in micros.
  71. optional int64 tax_amount_micros = 15 [(google.api.field_behavior) = OUTPUT_ONLY];
  72. // Output only. Total amount attributable to the account during the service period, in
  73. // micros. This equals the sum of the subtotal_amount_micros and
  74. // tax_amount_micros.
  75. optional int64 total_amount_micros = 16 [(google.api.field_behavior) = OUTPUT_ONLY];
  76. }
  77. // Represents a summarized account budget billable cost.
  78. message AccountBudgetSummary {
  79. // Output only. The resource name of the customer associated with this account budget.
  80. // This contains the customer ID, which appears on the invoice PDF as
  81. // "Account ID".
  82. // Customer resource names have the form:
  83. //
  84. // `customers/{customer_id}`
  85. optional string customer = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
  86. // Output only. The descriptive name of the account budget's customer. It appears on the
  87. // invoice PDF as "Account".
  88. optional string customer_descriptive_name = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
  89. // Output only. The resource name of the account budget associated with this summarized
  90. // billable cost.
  91. // AccountBudget resource names have the form:
  92. //
  93. // `customers/{customer_id}/accountBudgets/{account_budget_id}`
  94. optional string account_budget = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
  95. // Output only. The name of the account budget. It appears on the invoice PDF as "Account
  96. // budget".
  97. optional string account_budget_name = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
  98. // Output only. The purchase order number of the account budget. It appears on the
  99. // invoice PDF as "Purchase order".
  100. optional string purchase_order_number = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
  101. // Output only. The pretax subtotal amount attributable to this budget during the service
  102. // period, in micros.
  103. optional int64 subtotal_amount_micros = 15 [(google.api.field_behavior) = OUTPUT_ONLY];
  104. // Output only. The tax amount attributable to this budget during the service period, in
  105. // micros.
  106. optional int64 tax_amount_micros = 16 [(google.api.field_behavior) = OUTPUT_ONLY];
  107. // Output only. The total amount attributable to this budget during the service period,
  108. // in micros. This equals the sum of the account budget subtotal amount and
  109. // the account budget tax amount.
  110. optional int64 total_amount_micros = 17 [(google.api.field_behavior) = OUTPUT_ONLY];
  111. // Output only. The billable activity date range of the account budget, within the
  112. // service date range of this invoice. The end date is inclusive. This can
  113. // be different from the account budget's start and end time.
  114. google.ads.googleads.v12.common.DateRange billable_activity_date_range = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  115. // Output only. Accessible only to customers on the allow-list.
  116. // The pretax served amount attributable to this budget during the service
  117. // period, in micros. This is only useful to reconcile invoice and delivery
  118. // data.
  119. optional int64 served_amount_micros = 18 [(google.api.field_behavior) = OUTPUT_ONLY];
  120. // Output only. Accessible only to customers on the allow-list.
  121. // The pretax billed amount attributable to this budget during the
  122. // service period, in micros. This does not account for any adjustments.
  123. optional int64 billed_amount_micros = 19 [(google.api.field_behavior) = OUTPUT_ONLY];
  124. // Output only. Accessible only to customers on the allow-list.
  125. // The pretax overdelivery amount attributable to this budget during the
  126. // service period, in micros (negative value).
  127. optional int64 overdelivery_amount_micros = 20 [(google.api.field_behavior) = OUTPUT_ONLY];
  128. // Output only. Accessible only to customers on the allow-list.
  129. // The pretax invalid activity amount attributable to this budget in
  130. // previous months, in micros (negative value).
  131. optional int64 invalid_activity_amount_micros = 21 [(google.api.field_behavior) = OUTPUT_ONLY];
  132. }
  133. // Output only. The resource name of the invoice. Multiple customers can share a given
  134. // invoice, so multiple resource names may point to the same invoice.
  135. // Invoice resource names have the form:
  136. //
  137. // `customers/{customer_id}/invoices/{invoice_id}`
  138. string resource_name = 1 [
  139. (google.api.field_behavior) = OUTPUT_ONLY,
  140. (google.api.resource_reference) = {
  141. type: "googleads.googleapis.com/Invoice"
  142. }
  143. ];
  144. // Output only. The ID of the invoice. It appears on the invoice PDF as "Invoice number".
  145. optional string id = 25 [(google.api.field_behavior) = OUTPUT_ONLY];
  146. // Output only. The type of invoice.
  147. google.ads.googleads.v12.enums.InvoiceTypeEnum.InvoiceType type = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  148. // Output only. The resource name of this invoice's billing setup.
  149. //
  150. // `customers/{customer_id}/billingSetups/{billing_setup_id}`
  151. optional string billing_setup = 26 [(google.api.field_behavior) = OUTPUT_ONLY];
  152. // Output only. A 16 digit ID used to identify the payments account associated with the
  153. // billing setup, for example, "1234-5678-9012-3456". It appears on the
  154. // invoice PDF as "Billing Account Number".
  155. optional string payments_account_id = 27 [(google.api.field_behavior) = OUTPUT_ONLY];
  156. // Output only. A 12 digit ID used to identify the payments profile associated with the
  157. // billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
  158. // as "Billing ID".
  159. optional string payments_profile_id = 28 [(google.api.field_behavior) = OUTPUT_ONLY];
  160. // Output only. The issue date in yyyy-mm-dd format. It appears on the invoice PDF as
  161. // either "Issue date" or "Invoice date".
  162. optional string issue_date = 29 [(google.api.field_behavior) = OUTPUT_ONLY];
  163. // Output only. The due date in yyyy-mm-dd format.
  164. optional string due_date = 30 [(google.api.field_behavior) = OUTPUT_ONLY];
  165. // Output only. The service period date range of this invoice. The end date is inclusive.
  166. google.ads.googleads.v12.common.DateRange service_date_range = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  167. // Output only. The currency code. All costs are returned in this currency. A subset of the
  168. // currency codes derived from the ISO 4217 standard is supported.
  169. optional string currency_code = 31 [(google.api.field_behavior) = OUTPUT_ONLY];
  170. // Output only. The pretax subtotal amount of invoice level adjustments, in micros.
  171. int64 adjustments_subtotal_amount_micros = 19 [(google.api.field_behavior) = OUTPUT_ONLY];
  172. // Output only. The sum of taxes on the invoice level adjustments, in micros.
  173. int64 adjustments_tax_amount_micros = 20 [(google.api.field_behavior) = OUTPUT_ONLY];
  174. // Output only. The total amount of invoice level adjustments, in micros.
  175. int64 adjustments_total_amount_micros = 21 [(google.api.field_behavior) = OUTPUT_ONLY];
  176. // Output only. The pretax subtotal amount of invoice level regulatory costs, in micros.
  177. int64 regulatory_costs_subtotal_amount_micros = 22 [(google.api.field_behavior) = OUTPUT_ONLY];
  178. // Output only. The sum of taxes on the invoice level regulatory costs, in micros.
  179. int64 regulatory_costs_tax_amount_micros = 23 [(google.api.field_behavior) = OUTPUT_ONLY];
  180. // Output only. The total amount of invoice level regulatory costs, in micros.
  181. int64 regulatory_costs_total_amount_micros = 24 [(google.api.field_behavior) = OUTPUT_ONLY];
  182. // Output only. The pretax subtotal amount, in micros. This equals the
  183. // sum of the AccountBudgetSummary subtotal amounts,
  184. // Invoice.adjustments_subtotal_amount_micros, and
  185. // Invoice.regulatory_costs_subtotal_amount_micros.
  186. // Starting with v6, the Invoice.regulatory_costs_subtotal_amount_micros is no
  187. // longer included.
  188. optional int64 subtotal_amount_micros = 33 [(google.api.field_behavior) = OUTPUT_ONLY];
  189. // Output only. The sum of all taxes on the invoice, in micros. This equals the sum of the
  190. // AccountBudgetSummary tax amounts, plus taxes not associated with a specific
  191. // account budget.
  192. optional int64 tax_amount_micros = 34 [(google.api.field_behavior) = OUTPUT_ONLY];
  193. // Output only. The total amount, in micros. This equals the sum of
  194. // Invoice.subtotal_amount_micros and Invoice.tax_amount_micros.
  195. // Starting with v6, Invoice.regulatory_costs_subtotal_amount_micros is
  196. // also added as it is no longer already included in
  197. // Invoice.tax_amount_micros.
  198. optional int64 total_amount_micros = 35 [(google.api.field_behavior) = OUTPUT_ONLY];
  199. // Output only. The resource name of the original invoice corrected, wrote off, or canceled
  200. // by this invoice, if applicable. If `corrected_invoice` is set,
  201. // `replaced_invoices` will not be set.
  202. // Invoice resource names have the form:
  203. //
  204. // `customers/{customer_id}/invoices/{invoice_id}`
  205. optional string corrected_invoice = 36 [(google.api.field_behavior) = OUTPUT_ONLY];
  206. // Output only. The resource name of the original invoice(s) being rebilled or replaced by
  207. // this invoice, if applicable. There might be multiple replaced invoices due
  208. // to invoice consolidation. The replaced invoices may not belong to the same
  209. // payments account. If `replaced_invoices` is set, `corrected_invoice` will
  210. // not be set.
  211. // Invoice resource names have the form:
  212. //
  213. // `customers/{customer_id}/invoices/{invoice_id}`
  214. repeated string replaced_invoices = 37 [(google.api.field_behavior) = OUTPUT_ONLY];
  215. // Output only. The URL to a PDF copy of the invoice. Users need to pass in their OAuth
  216. // token to request the PDF with this URL.
  217. optional string pdf_url = 38 [(google.api.field_behavior) = OUTPUT_ONLY];
  218. // Output only. The list of summarized account budget information associated with this
  219. // invoice.
  220. repeated AccountBudgetSummary account_budget_summaries = 18 [(google.api.field_behavior) = OUTPUT_ONLY];
  221. // Output only. The list of summarized account information associated with this invoice.
  222. repeated AccountSummary account_summaries = 39 [(google.api.field_behavior) = OUTPUT_ONLY];
  223. }