com.google.ads.googleads.v17.services.CampaignDurationOrBuilder 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/services/reach_plan_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
public interface CampaignDurationOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.services.CampaignDuration)
com.google.protobuf.MessageOrBuilder {
/**
*
* The duration value in days.
*
* This field cannot be combined with the date_range field.
*
*
* optional int32 duration_in_days = 2;
* @return Whether the durationInDays field is set.
*/
boolean hasDurationInDays();
/**
*
* The duration value in days.
*
* This field cannot be combined with the date_range field.
*
*
* optional int32 duration_in_days = 2;
* @return The durationInDays.
*/
int getDurationInDays();
/**
*
* Date range of the campaign.
* Dates are in the yyyy-mm-dd format and inclusive.
* The end date must be < 1 year in the future and the
* date range must be <= 92 days long.
*
* This field cannot be combined with the duration_in_days field.
*
*
* .google.ads.googleads.v17.common.DateRange date_range = 3;
* @return Whether the dateRange field is set.
*/
boolean hasDateRange();
/**
*
* Date range of the campaign.
* Dates are in the yyyy-mm-dd format and inclusive.
* The end date must be < 1 year in the future and the
* date range must be <= 92 days long.
*
* This field cannot be combined with the duration_in_days field.
*
*
* .google.ads.googleads.v17.common.DateRange date_range = 3;
* @return The dateRange.
*/
com.google.ads.googleads.v17.common.DateRange getDateRange();
/**
*
* Date range of the campaign.
* Dates are in the yyyy-mm-dd format and inclusive.
* The end date must be < 1 year in the future and the
* date range must be <= 92 days long.
*
* This field cannot be combined with the duration_in_days field.
*
*
* .google.ads.googleads.v17.common.DateRange date_range = 3;
*/
com.google.ads.googleads.v17.common.DateRangeOrBuilder getDateRangeOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy