Show / Hide Table of Contents

Class InputField

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.

Inheritance
object
InputField
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Merchant.issueresolution_v1beta.Data
Assembly: Google.Apis.Merchant.issueresolution_v1beta.dll
Syntax
public class InputField : IDirectResponseSchema

Properties

CheckboxInput

Input field to provide a boolean value. Corresponds to the html input type=checkbox.

Declaration
[JsonProperty("checkboxInput")]
public virtual CheckboxInput CheckboxInput { get; set; }
Property Value
Type Description
CheckboxInput

ChoiceInput

Input field to select one of the offered choices. Corresponds to the html input type=radio.

Declaration
[JsonProperty("choiceInput")]
public virtual ChoiceInput ChoiceInput { get; set; }
Property Value
Type Description
ChoiceInput

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Id

Not for display but need to be sent back for the given input field.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
string

Label

Input field label. There may be more information to be shown in a tooltip.

Declaration
[JsonProperty("label")]
public virtual TextWithTooltip Label { get; set; }
Property Value
Type Description
TextWithTooltip

Required

Whether the field is required. The action button needs to stay disabled till values for all required fields are provided.

Declaration
[JsonProperty("required")]
public virtual bool? Required { get; set; }
Property Value
Type Description
bool?

TextInput

Input field to provide text information. Corresponds to the html input type=text or html textarea.

Declaration
[JsonProperty("textInput")]
public virtual TextInput TextInput { get; set; }
Property Value
Type Description
TextInput

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX