export interface SdPlatformRequestDocumentCreate { /** * An identifier for the type of document, freely choosable string, e.g. * - customer_terms * - user_terms * - data_processing_agreement * - privacy_policy_supplement */ type: string; /** * Description of the document. */ description: string; /** * Timestamp from which the document will be valid. */ valid_from: number; /** * If true the document must be accepted, otherwise it’s just for information. */ requires_acceptance: boolean; /** * If true this document applies to account owners, if false it applies to users who are not account owners. */ account_owner: boolean; /** * The actual document (the contents of the file), base64 encoded. */ document: string; /** * Content-Type of the document to be used when downloading it. * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type */ content_type: string; /** * Filename of the document, to be used when downloading it. This will be used for the Content-Disposition header. * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Disposition */ filename: string; } export interface SdPlatformRequestDocumentAccept { /** * Captcha token. */ friendly_captcha_solution: string; } //# sourceMappingURL=SdPlatformRequestDocument.d.ts.map