/* tslint:disable */ /* eslint-disable */ /** * 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 const CreatePresignedPostRequestDtoRequesterEnum = { Accountservice: 'accountservice', Insuranceservice: 'insuranceservice', Billingservice: 'billingservice', Tenantservice: 'tenantservice', BookingFunnel: 'bookingFunnel', Publicapi: 'publicapi', Admin: 'admin', Claimservice: 'claimservice', Customerservice: 'customerservice', Notificationservice: 'notificationservice', Paymentservice: 'paymentservice', Processmanager: 'processmanager', Gdvservice: 'gdvservice', Documentservice: 'documentservice' } as const; export type CreatePresignedPostRequestDtoRequesterEnum = typeof CreatePresignedPostRequestDtoRequesterEnum[keyof typeof CreatePresignedPostRequestDtoRequesterEnum]; export const CreatePresignedPostRequestDtoContentTypeEnum = { Pdf: 'pdf', Jpg: 'jpg', Png: 'png', Gz: 'gz', Csv: 'csv', Doc: 'doc', Docx: 'docx', Html: 'html', Json: 'json', Xml: 'xml', Txt: 'txt', Zip: 'zip', Tar: 'tar', Rar: 'rar', Mp4: 'MP4', Mov: 'MOV', Wmv: 'WMV', Avi: 'AVI' } as const; export type CreatePresignedPostRequestDtoContentTypeEnum = typeof CreatePresignedPostRequestDtoContentTypeEnum[keyof typeof CreatePresignedPostRequestDtoContentTypeEnum];