@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
41 lines (40 loc) • 901 B
TypeScript
import { Item } from './item';
export declare class SubInputDetail {
/**
* Configuration parameters for the required input.
*/
'configuration'?: {
[]: string;
};
/**
* In case of a select, the items to choose from.
*/
'items'?: Array<Item>;
/**
* The value to provide in the result.
*/
'key'?: string;
/**
* True if this input is optional to provide.
*/
'optional'?: boolean;
/**
* The type of the required input.
*/
'type'?: string;
/**
* The value can be pre-filled, if available.
*/
'value'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}