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
IMessage<InputField>
IEquatable<InputField>
IDeepCloneable<InputField>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Shopping.Merchant.IssueResolution.V1
Assembly: Google.Shopping.Merchant.IssueResolution.V1.dll
Syntax
public sealed class InputField : IMessage<InputField>, IEquatable<InputField>, IDeepCloneable<InputField>, IBufferMessage, IMessage

Constructors

InputField()

Declaration
public InputField()

InputField(InputField)

Declaration
public InputField(InputField other)
Parameters
Type Name Description
InputField other

Properties

CheckboxInput

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

Declaration
public InputField.Types.CheckboxInput CheckboxInput { get; set; }
Property Value
Type Description
InputField.Types.CheckboxInput

ChoiceInput

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

Declaration
public InputField.Types.ChoiceInput ChoiceInput { get; set; }
Property Value
Type Description
InputField.Types.ChoiceInput

Id

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

Declaration
public 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
public 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
public 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
public InputField.Types.TextInput TextInput { get; set; }
Property Value
Type Description
InputField.Types.TextInput

ValueInputCase

Declaration
public InputField.ValueInputOneofCase ValueInputCase { get; }
Property Value
Type Description
InputField.ValueInputOneofCase
In this article
Back to top Generated by DocFX