/** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CreatePresignedPostRequestDto */ export interface CreatePresignedPostRequestDto { /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'templateSlug': string; /** * Document entity type. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'entityType': string; /** * Unique identifier referencing the entity. * @type {number} * @memberof CreatePresignedPostRequestDto */ 'entityId'?: number; /** * Description of the document. Usually a short summary about the context in which the document is being used. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'description': string; /** * Unique identifier of the policy that this object belongs to. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'policyCode'?: string; /** * Unique identifier of the account that this object belongs to. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'accountCode'?: string; /** * Unique identifier of the lead that this object belongs to. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'leadCode'?: string; /** * Identifier of the service that requested the creation of this document. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'requester': CreatePresignedPostRequestDtoRequesterEnum; /** * Extension of the file. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'contentType': CreatePresignedPostRequestDtoContentTypeEnum; /** * Content type of the file. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'isoContentType': string; /** * Name of the file the end user will see when he downloads it. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'filename': string; /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof CreatePresignedPostRequestDto */ 'productSlug'?: string; } export declare const CreatePresignedPostRequestDtoRequesterEnum: { readonly Accountservice: "accountservice"; readonly Insuranceservice: "insuranceservice"; readonly Billingservice: "billingservice"; readonly Tenantservice: "tenantservice"; readonly BookingFunnel: "bookingFunnel"; readonly Publicapi: "publicapi"; readonly Admin: "admin"; readonly Claimservice: "claimservice"; readonly Customerservice: "customerservice"; readonly Notificationservice: "notificationservice"; readonly Paymentservice: "paymentservice"; readonly Processmanager: "processmanager"; readonly Gdvservice: "gdvservice"; readonly Documentservice: "documentservice"; }; export type CreatePresignedPostRequestDtoRequesterEnum = typeof CreatePresignedPostRequestDtoRequesterEnum[keyof typeof CreatePresignedPostRequestDtoRequesterEnum]; export declare const CreatePresignedPostRequestDtoContentTypeEnum: { readonly Pdf: "pdf"; readonly Jpg: "jpg"; readonly Png: "png"; readonly Gz: "gz"; readonly Csv: "csv"; readonly Doc: "doc"; readonly Docx: "docx"; readonly Html: "html"; readonly Json: "json"; readonly Xml: "xml"; readonly Txt: "txt"; readonly Zip: "zip"; readonly Tar: "tar"; readonly Rar: "rar"; readonly Mp4: "MP4"; readonly Mov: "MOV"; readonly Wmv: "WMV"; readonly Avi: "AVI"; }; export type CreatePresignedPostRequestDtoContentTypeEnum = typeof CreatePresignedPostRequestDtoContentTypeEnum[keyof typeof CreatePresignedPostRequestDtoContentTypeEnum];