public final class InputField extends GeneratedMessage implements InputFieldOrBuilder
Input field that needs to be available to the business. If the field is
marked as required, then a value needs to be provided for a successful
processing of the request.
Protobuf type google.shopping.merchant.issueresolution.v1beta.InputField
Inherited Members
com.google.protobuf.GeneratedMessage.<ContainingT,T>newFileScopedGeneratedExtension(java.lang.Class<?>,com.google.protobuf.Message)
com.google.protobuf.GeneratedMessage.<ContainingT,T>newMessageScopedGeneratedExtension(com.google.protobuf.Message,int,java.lang.Class<?>,com.google.protobuf.Message)
com.google.protobuf.GeneratedMessage.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessage.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessage.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessage.<V>serializeBooleanMapTo(com.google.protobuf.CodedOutputStream,com.google.protobuf.MapField<java.lang.Boolean,V>,com.google.protobuf.MapEntry<java.lang.Boolean,V>,int)
com.google.protobuf.GeneratedMessage.<V>serializeIntegerMapTo(com.google.protobuf.CodedOutputStream,com.google.protobuf.MapField<java.lang.Integer,V>,com.google.protobuf.MapEntry<java.lang.Integer,V>,int)
com.google.protobuf.GeneratedMessage.<V>serializeLongMapTo(com.google.protobuf.CodedOutputStream,com.google.protobuf.MapField<java.lang.Long,V>,com.google.protobuf.MapEntry<java.lang.Long,V>,int)
com.google.protobuf.GeneratedMessage.<V>serializeStringMapTo(com.google.protobuf.CodedOutputStream,com.google.protobuf.MapField<java.lang.String,V>,com.google.protobuf.MapEntry<java.lang.String,V>,int)
com.google.protobuf.GeneratedMessage.canUseUnsafe()
com.google.protobuf.GeneratedMessage.emptyBooleanList()
com.google.protobuf.GeneratedMessage.emptyDoubleList()
com.google.protobuf.GeneratedMessage.emptyFloatList()
com.google.protobuf.GeneratedMessage.emptyIntList()
com.google.protobuf.GeneratedMessage.emptyLongList()
com.google.protobuf.GeneratedMessage.internalGetMapFieldReflection(int)
com.google.protobuf.GeneratedMessage.isStringEmpty(java.lang.Object)
com.google.protobuf.GeneratedMessage.mergeFromAndMakeImmutableInternal(com.google.protobuf.CodedInputStream,com.google.protobuf.ExtensionRegistryLite)
com.google.protobuf.GeneratedMessage.newInstance(com.google.protobuf.GeneratedMessage.UnusedPrivateParameter)
com.google.protobuf.GeneratedMessage.parseUnknownFieldProto3(com.google.protobuf.CodedInputStream,com.google.protobuf.UnknownFieldSet.Builder,com.google.protobuf.ExtensionRegistryLite,int)
Static Fields
public static final int CHECKBOX_INPUT_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
public static final int CHOICE_INPUT_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
public static final int ID_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
public static final int LABEL_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
public static final int REQUIRED_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
TEXT_INPUT_FIELD_NUMBER
public static final int TEXT_INPUT_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
Static Methods
public static InputField getDefaultInstance()
public static final Descriptors.Descriptor getDescriptor()
public static InputField.Builder newBuilder()
public static InputField.Builder newBuilder(InputField prototype)
public static InputField parseDelimitedFrom(InputStream input)
public static InputField parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static InputField parseFrom(byte[] data)
| Parameter |
| Name |
Description |
data |
byte[]
|
public static InputField parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static InputField parseFrom(ByteString data)
public static InputField parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static InputField parseFrom(CodedInputStream input)
public static InputField parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static InputField parseFrom(InputStream input)
public static InputField parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static InputField parseFrom(ByteBuffer data)
public static InputField parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static Parser<InputField> parser()
Methods
public boolean equals(Object obj)
| Parameter |
| Name |
Description |
obj |
Object
|
Overrides
public InputField.CheckboxInput getCheckboxInput()
Input field to provide a boolean value.
Corresponds to the html input
type=checkbox.
.google.shopping.merchant.issueresolution.v1beta.InputField.CheckboxInput checkbox_input = 6;
public InputField.CheckboxInputOrBuilder getCheckboxInputOrBuilder()
Input field to provide a boolean value.
Corresponds to the html input
type=checkbox.
.google.shopping.merchant.issueresolution.v1beta.InputField.CheckboxInput checkbox_input = 6;
public InputField.ChoiceInput getChoiceInput()
Input field to select one of the offered choices.
Corresponds to the html input
type=radio.
.google.shopping.merchant.issueresolution.v1beta.InputField.ChoiceInput choice_input = 5;
public InputField.ChoiceInputOrBuilder getChoiceInputOrBuilder()
Input field to select one of the offered choices.
Corresponds to the html input
type=radio.
.google.shopping.merchant.issueresolution.v1beta.InputField.ChoiceInput choice_input = 5;
public InputField getDefaultInstanceForType()
Not for display but need to be sent back for the given input field.
string id = 1;
| Returns |
| Type |
Description |
String |
The id.
|
public ByteString getIdBytes()
Not for display but need to be sent back for the given input field.
string id = 1;
| Returns |
| Type |
Description |
ByteString |
The bytes for id.
|
public TextWithTooltip getLabel()
Input field label. There may be more information to be shown in a tooltip.
.google.shopping.merchant.issueresolution.v1beta.TextWithTooltip label = 2;
public TextWithTooltipOrBuilder getLabelOrBuilder()
Input field label. There may be more information to be shown in a tooltip.
.google.shopping.merchant.issueresolution.v1beta.TextWithTooltip label = 2;
public Parser<InputField> getParserForType()
Overrides
public boolean getRequired()
Whether the field is required. The action button needs to stay disabled
till values for all required fields are provided.
bool required = 3;
| Returns |
| Type |
Description |
boolean |
The required.
|
public int getSerializedSize()
| Returns |
| Type |
Description |
int |
|
Overrides
getTextInput()
public InputField.TextInput getTextInput()
Input field to provide text information.
Corresponds to the html input
type=text
or html
textarea.
.google.shopping.merchant.issueresolution.v1beta.InputField.TextInput text_input = 4;
getTextInputOrBuilder()
public InputField.TextInputOrBuilder getTextInputOrBuilder()
Input field to provide text information.
Corresponds to the html input
type=text
or html
textarea.
.google.shopping.merchant.issueresolution.v1beta.InputField.TextInput text_input = 4;
public InputField.ValueInputCase getValueInputCase()
public boolean hasCheckboxInput()
Input field to provide a boolean value.
Corresponds to the html input
type=checkbox.
.google.shopping.merchant.issueresolution.v1beta.InputField.CheckboxInput checkbox_input = 6;
| Returns |
| Type |
Description |
boolean |
Whether the checkboxInput field is set.
|
public boolean hasChoiceInput()
Input field to select one of the offered choices.
Corresponds to the html input
type=radio.
.google.shopping.merchant.issueresolution.v1beta.InputField.ChoiceInput choice_input = 5;
| Returns |
| Type |
Description |
boolean |
Whether the choiceInput field is set.
|
public boolean hasLabel()
Input field label. There may be more information to be shown in a tooltip.
.google.shopping.merchant.issueresolution.v1beta.TextWithTooltip label = 2;
| Returns |
| Type |
Description |
boolean |
Whether the label field is set.
|
hasTextInput()
public boolean hasTextInput()
Input field to provide text information.
Corresponds to the html input
type=text
or html
textarea.
.google.shopping.merchant.issueresolution.v1beta.InputField.TextInput text_input = 4;
| Returns |
| Type |
Description |
boolean |
Whether the textInput field is set.
|
| Returns |
| Type |
Description |
int |
|
Overrides
protected GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
Overrides
public final boolean isInitialized()
Overrides
public InputField.Builder newBuilderForType()
protected InputField.Builder newBuilderForType(AbstractMessage.BuilderParent parent)
Overrides
public InputField.Builder toBuilder()
public void writeTo(CodedOutputStream output)
Overrides