@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 870 B
TypeScript
export declare class Url {
/**
* Indicates if the message sent to this URL should be encrypted.
*/
"encrypted"?: boolean;
/**
* The password for authentication of the notifications.
*/
"password"?: string;
/**
* The URL in the format: http(s)://domain.com.
*/
"url"?: string;
/**
* The username for authentication of the notifications.
*/
"username"?: string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}