123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- syntax = "proto3";
- package google.cloud.channel.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/channel/v1/common.proto";
- import "google/protobuf/timestamp.proto";
- import "google/type/postal_address.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/channel/v1;channel";
- option java_multiple_files = true;
- option java_outer_classname = "CustomersProto";
- option java_package = "com.google.cloud.channel.v1";
- message Customer {
- option (google.api.resource) = {
- type: "cloudchannel.googleapis.com/Customer"
- pattern: "accounts/{account}/customers/{customer}"
- };
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string org_display_name = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- google.type.PostalAddress org_postal_address = 3 [(google.api.field_behavior) = REQUIRED];
-
- ContactInfo primary_contact_info = 4;
-
-
-
-
-
- string alternate_email = 5;
-
-
- string domain = 6 [(google.api.field_behavior) = REQUIRED];
-
- google.protobuf.Timestamp create_time = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string cloud_identity_id = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string language_code = 10 [(google.api.field_behavior) = OPTIONAL];
-
-
- CloudIdentityInfo cloud_identity_info = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string channel_partner_id = 13;
- }
- message ContactInfo {
-
- string first_name = 1;
-
- string last_name = 2;
-
-
- string display_name = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string email = 5;
-
- string title = 6 [(google.api.field_behavior) = OPTIONAL];
-
- string phone = 7;
- }
|