UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

43 lines (42 loc) 1.25 kB
export declare class GetAcceptedTermsOfServiceDocumentResponse { /** * The accepted Terms of Service document in the requested format represented as a Base64-encoded bytes array. */ "document"?: string; /** * The unique identifier of the legal entity. */ "id"?: string; /** * An Adyen-generated reference for the accepted Terms of Service. */ "termsOfServiceAcceptanceReference"?: string; /** * The format of the Terms of Service document. */ "termsOfServiceDocumentFormat"?: GetAcceptedTermsOfServiceDocumentResponse.TermsOfServiceDocumentFormatEnum; 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(); } export declare namespace GetAcceptedTermsOfServiceDocumentResponse { enum TermsOfServiceDocumentFormatEnum { Json = "JSON", Pdf = "PDF", Txt = "TXT" } }