/** * 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 CreateCustomApplicationRequestDto */ export interface CreateCustomApplicationRequestDto { /** * Required data to create a custom application. * @type {object} * @memberof CreateCustomApplicationRequestDto */ 'data': object; /** * Custom provider name. * @type {string} * @memberof CreateCustomApplicationRequestDto */ 'provider': CreateCustomApplicationRequestDtoProviderEnum; } export declare const CreateCustomApplicationRequestDtoProviderEnum: { readonly Squarelife: "squarelife"; readonly Janitos: "janitos"; }; export type CreateCustomApplicationRequestDtoProviderEnum = typeof CreateCustomApplicationRequestDtoProviderEnum[keyof typeof CreateCustomApplicationRequestDtoProviderEnum];