12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- syntax = "proto3";
- package google.ads.googleads.v12.errors;
- option csharp_namespace = "Google.Ads.GoogleAds.V12.Errors";
- option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/errors;errors";
- option java_multiple_files = true;
- option java_outer_classname = "InvoiceErrorProto";
- option java_package = "com.google.ads.googleads.v12.errors";
- option objc_class_prefix = "GAA";
- option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Errors";
- option ruby_package = "Google::Ads::GoogleAds::V12::Errors";
- message InvoiceErrorEnum {
-
- enum InvoiceError {
-
- UNSPECIFIED = 0;
-
- UNKNOWN = 1;
-
- YEAR_MONTH_TOO_OLD = 2;
-
- NOT_INVOICED_CUSTOMER = 3;
-
- BILLING_SETUP_NOT_APPROVED = 4;
-
-
- BILLING_SETUP_NOT_ON_MONTHLY_INVOICING = 5;
-
- NON_SERVING_CUSTOMER = 6;
- }
- }
|