@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
31 lines (30 loc) • 869 B
TypeScript
import { ErrorFieldType } from './errorFieldType';
export declare class GetOnboardingUrlResponse {
/**
* Information about any invalid fields.
*/
'invalidFields'?: Array<ErrorFieldType>;
/**
* The reference of a request. Can be used to uniquely identify the request.
*/
'pspReference'?: string;
/**
* The URL to the Hosted Onboarding Page where you should redirect your sub-merchant. This URL must be used within 30 seconds and can only be used once.
*/
'redirectUrl'?: string;
/**
* The result code.
*/
'resultCode'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}