123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- syntax = "proto3";
- package google.ads.googleads.v12.resources;
- import "google/ads/googleads/v12/enums/hotel_reconciliation_status.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- option csharp_namespace = "Google.Ads.GoogleAds.V12.Resources";
- option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/resources;resources";
- option java_multiple_files = true;
- option java_outer_classname = "HotelReconciliationProto";
- option java_package = "com.google.ads.googleads.v12.resources";
- option objc_class_prefix = "GAA";
- option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Resources";
- option ruby_package = "Google::Ads::GoogleAds::V12::Resources";
- message HotelReconciliation {
- option (google.api.resource) = {
- type: "googleads.googleapis.com/HotelReconciliation"
- pattern: "customers/{customer_id}/hotelReconciliations/{commission_id}"
- };
-
-
-
-
- string resource_name = 1 [
- (google.api.field_behavior) = IMMUTABLE,
- (google.api.resource_reference) = {
- type: "googleads.googleapis.com/HotelReconciliation"
- }
- ];
-
-
- string commission_id = 2 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = OUTPUT_ONLY
- ];
-
-
- string order_id = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string campaign = 11 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "googleads.googleapis.com/Campaign"
- }
- ];
-
-
- int64 hotel_center_id = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string hotel_id = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string check_in_date = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string check_out_date = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
- int64 reconciled_value_micros = 8 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = OUTPUT_ONLY
- ];
-
-
- bool billed = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
- google.ads.googleads.v12.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus status = 10 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = OUTPUT_ONLY
- ];
- }
|