Specifies characteristics that apply to a seller input.

Export

SellerInputDefinition

interface SellerInputDefinition {
    Constraints: Constraint[];
    DataType: string;
    InputDisplayText: string;
    InputTarget?: InputTargetType;
    IsRequired: boolean;
    RestrictedSetValues?: string[];
    StoredValue: AdditionalSellerInput;
}

Properties

Constraints: Constraint[]

List of constraints.

Memberof

SellerInputDefinition

DataType: string

The data type of the additional input field.

Memberof

SellerInputDefinition

InputDisplayText: string

The display text for the additional input field.

Memberof

SellerInputDefinition

InputTarget?: InputTargetType

Memberof

SellerInputDefinition

IsRequired: boolean

When true, the additional input field is required.

Memberof

SellerInputDefinition

RestrictedSetValues?: string[]

The set of fixed values in an additional seller input.

Memberof

SellerInputDefinition

Memberof

SellerInputDefinition