123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- syntax = "proto3";
- package google.ads.googleads.v10.resources;
- import "google/ads/googleads/v10/enums/customer_status.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- option csharp_namespace = "Google.Ads.GoogleAds.V10.Resources";
- option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v10/resources;resources";
- option java_multiple_files = true;
- option java_outer_classname = "CustomerClientProto";
- option java_package = "com.google.ads.googleads.v10.resources";
- option objc_class_prefix = "GAA";
- option php_namespace = "Google\\Ads\\GoogleAds\\V10\\Resources";
- option ruby_package = "Google::Ads::GoogleAds::V10::Resources";
- message CustomerClient {
- option (google.api.resource) = {
- type: "googleads.googleapis.com/CustomerClient"
- pattern: "customers/{customer_id}/customerClients/{client_customer_id}"
- };
-
-
-
- string resource_name = 1 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "googleads.googleapis.com/CustomerClient"
- }
- ];
-
-
- optional string client_customer = 12 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "googleads.googleapis.com/Customer"
- }
- ];
-
-
-
- optional bool hidden = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- optional int64 level = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- optional string time_zone = 15 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- optional bool test_account = 16 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- optional bool manager = 17 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- optional string descriptive_name = 18 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- optional string currency_code = 19 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- optional int64 id = 20 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- repeated string applied_labels = 21 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "googleads.googleapis.com/Label"
- }
- ];
-
- google.ads.googleads.v10.enums.CustomerStatusEnum.CustomerStatus status = 22 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|