123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- syntax = "proto3";
- package google.ads.googleads.v10.resources;
- import "google/ads/googleads/v10/common/criterion_category_availability.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 = "LifeEventProto";
- 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 LifeEvent {
- option (google.api.resource) = {
- type: "googleads.googleapis.com/LifeEvent"
- pattern: "customers/{customer_id}/lifeEvents/{life_event_id}"
- };
-
-
-
-
- string resource_name = 1 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "googleads.googleapis.com/LifeEvent"
- }
- ];
-
- int64 id = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string name = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string parent = 4 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "googleads.googleapis.com/LifeEvent"
- }
- ];
-
- bool launched_to_all = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- repeated google.ads.googleads.v10.common.CriterionCategoryAvailability availabilities = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|