com.google.ads.googleads.v17.services.ListInvoicesRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v17 Show documentation
Show all versions of google-ads-stubs-v17 Show documentation
Stubs for GAAPI version google-ads-stubs-v17
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v17/services/invoice_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
public interface ListInvoicesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.services.ListInvoicesRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required. The ID of the customer to fetch invoices for.
*
*
* string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The customerId.
*/
java.lang.String getCustomerId();
/**
*
* Required. The ID of the customer to fetch invoices for.
*
*
* string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The bytes for customerId.
*/
com.google.protobuf.ByteString
getCustomerIdBytes();
/**
*
* Required. The billing setup resource name of the requested invoices.
*
* `customers/{customer_id}/billingSetups/{billing_setup_id}`
*
*
* string billing_setup = 2 [(.google.api.field_behavior) = REQUIRED];
* @return The billingSetup.
*/
java.lang.String getBillingSetup();
/**
*
* Required. The billing setup resource name of the requested invoices.
*
* `customers/{customer_id}/billingSetups/{billing_setup_id}`
*
*
* string billing_setup = 2 [(.google.api.field_behavior) = REQUIRED];
* @return The bytes for billingSetup.
*/
com.google.protobuf.ByteString
getBillingSetupBytes();
/**
*
* Required. The issue year to retrieve invoices, in yyyy format. Only
* invoices issued in 2019 or later can be retrieved.
*
*
* string issue_year = 3 [(.google.api.field_behavior) = REQUIRED];
* @return The issueYear.
*/
java.lang.String getIssueYear();
/**
*
* Required. The issue year to retrieve invoices, in yyyy format. Only
* invoices issued in 2019 or later can be retrieved.
*
*
* string issue_year = 3 [(.google.api.field_behavior) = REQUIRED];
* @return The bytes for issueYear.
*/
com.google.protobuf.ByteString
getIssueYearBytes();
/**
*
* Required. The issue month to retrieve invoices.
*
*
* .google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear issue_month = 4 [(.google.api.field_behavior) = REQUIRED];
* @return The enum numeric value on the wire for issueMonth.
*/
int getIssueMonthValue();
/**
*
* Required. The issue month to retrieve invoices.
*
*
* .google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear issue_month = 4 [(.google.api.field_behavior) = REQUIRED];
* @return The issueMonth.
*/
com.google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear getIssueMonth();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy