com.google.ads.googleads.v17.common.LeadFormFieldOrBuilder 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/common/asset_types.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.common;
public interface LeadFormFieldOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.common.LeadFormField)
com.google.protobuf.MessageOrBuilder {
/**
*
* Describes the input type, which may be a predefined type such as "full
* name" or a pre-vetted question like "What kind of vehicle do you have?".
*
*
* .google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType input_type = 1;
* @return The enum numeric value on the wire for inputType.
*/
int getInputTypeValue();
/**
*
* Describes the input type, which may be a predefined type such as "full
* name" or a pre-vetted question like "What kind of vehicle do you have?".
*
*
* .google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType input_type = 1;
* @return The inputType.
*/
com.google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType getInputType();
/**
*
* Answer configuration for a single choice question. Can be set only for
* pre-vetted question fields. Minimum of 2 answers required and maximum of
* 12 allowed.
*
*
* .google.ads.googleads.v17.common.LeadFormSingleChoiceAnswers single_choice_answers = 2;
* @return Whether the singleChoiceAnswers field is set.
*/
boolean hasSingleChoiceAnswers();
/**
*
* Answer configuration for a single choice question. Can be set only for
* pre-vetted question fields. Minimum of 2 answers required and maximum of
* 12 allowed.
*
*
* .google.ads.googleads.v17.common.LeadFormSingleChoiceAnswers single_choice_answers = 2;
* @return The singleChoiceAnswers.
*/
com.google.ads.googleads.v17.common.LeadFormSingleChoiceAnswers getSingleChoiceAnswers();
/**
*
* Answer configuration for a single choice question. Can be set only for
* pre-vetted question fields. Minimum of 2 answers required and maximum of
* 12 allowed.
*
*
* .google.ads.googleads.v17.common.LeadFormSingleChoiceAnswers single_choice_answers = 2;
*/
com.google.ads.googleads.v17.common.LeadFormSingleChoiceAnswersOrBuilder getSingleChoiceAnswersOrBuilder();
/**
*
* Answer configuration for location question. If true, campaign/account
* level location data (state, city, business name etc) will be rendered on
* the Lead Form.
* Starting V13.1, has_location_answer can only be set for "What is your
* preferred dealership?" question, for advertisers with Location Assets
* setup at campaign/account level.
*
*
* bool has_location_answer = 3;
* @return Whether the hasLocationAnswer field is set.
*/
boolean hasHasLocationAnswer();
/**
*
* Answer configuration for location question. If true, campaign/account
* level location data (state, city, business name etc) will be rendered on
* the Lead Form.
* Starting V13.1, has_location_answer can only be set for "What is your
* preferred dealership?" question, for advertisers with Location Assets
* setup at campaign/account level.
*
*
* bool has_location_answer = 3;
* @return The hasLocationAnswer.
*/
boolean getHasLocationAnswer();
com.google.ads.googleads.v17.common.LeadFormField.AnswersCase getAnswersCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy