com.google.ads.googleads.v17.resources.RecommendationSubscriptionOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v17 Show documentation
Show all versions of google-ads-stubs-v17 Show documentation
Stubs for GAAPI version google-ads-stubs-v17
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v17/resources/recommendation_subscription.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.resources;
public interface RecommendationSubscriptionOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.resources.RecommendationSubscription)
com.google.protobuf.MessageOrBuilder {
/**
*
* Immutable. The resource name of the recommendation subscription.
*
* `customers/{customer_id}/recommendationSubscriptions/{recommendation_type}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
java.lang.String getResourceName();
/**
*
* Immutable. The resource name of the recommendation subscription.
*
* `customers/{customer_id}/recommendationSubscriptions/{recommendation_type}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
com.google.protobuf.ByteString
getResourceNameBytes();
/**
*
* Required. Immutable. The type of recommendation subscribed to.
*
*
* .google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType type = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = IMMUTABLE];
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
*
* Required. Immutable. The type of recommendation subscribed to.
*
*
* .google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType type = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = IMMUTABLE];
* @return The type.
*/
com.google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType getType();
/**
*
* Output only. Time in seconds when the subscription was first created. The
* datetime is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss"
* format.
*
*
* optional string create_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the createDateTime field is set.
*/
boolean hasCreateDateTime();
/**
*
* Output only. Time in seconds when the subscription was first created. The
* datetime is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss"
* format.
*
*
* optional string create_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The createDateTime.
*/
java.lang.String getCreateDateTime();
/**
*
* Output only. Time in seconds when the subscription was first created. The
* datetime is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss"
* format.
*
*
* optional string create_date_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The bytes for createDateTime.
*/
com.google.protobuf.ByteString
getCreateDateTimeBytes();
/**
*
* Output only. Contains the time in microseconds, when the Recommendation
* Subscription was last updated. The datetime is in the customer's time zone
* and in "yyyy-MM-dd HH:mm:ss.ssssss" format.
*
*
* optional string modify_date_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the modifyDateTime field is set.
*/
boolean hasModifyDateTime();
/**
*
* Output only. Contains the time in microseconds, when the Recommendation
* Subscription was last updated. The datetime is in the customer's time zone
* and in "yyyy-MM-dd HH:mm:ss.ssssss" format.
*
*
* optional string modify_date_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The modifyDateTime.
*/
java.lang.String getModifyDateTime();
/**
*
* Output only. Contains the time in microseconds, when the Recommendation
* Subscription was last updated. The datetime is in the customer's time zone
* and in "yyyy-MM-dd HH:mm:ss.ssssss" format.
*
*
* optional string modify_date_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The bytes for modifyDateTime.
*/
com.google.protobuf.ByteString
getModifyDateTimeBytes();
/**
*
* Required. Status of the subscription, either enabled or paused.
*
*
* optional .google.ads.googleads.v17.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus status = 5 [(.google.api.field_behavior) = REQUIRED];
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* Required. Status of the subscription, either enabled or paused.
*
*
* optional .google.ads.googleads.v17.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus status = 5 [(.google.api.field_behavior) = REQUIRED];
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
*
* Required. Status of the subscription, either enabled or paused.
*
*
* optional .google.ads.googleads.v17.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus status = 5 [(.google.api.field_behavior) = REQUIRED];
* @return The status.
*/
com.google.ads.googleads.v17.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus getStatus();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy