/** * Kinde Management API * Provides endpoints to manage your Kinde Businesses * * The version of the OpenAPI document: 1 * Contact: support@kinde.com * * 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 CreateApplicationRequest */ export interface CreateApplicationRequest { /** * The application's name. * @type {string} * @memberof CreateApplicationRequest */ name?: string; /** * The application's type. * @type {string} * @memberof CreateApplicationRequest */ type?: CreateApplicationRequestTypeEnum; } /** * @export */ export declare const CreateApplicationRequestTypeEnum: { readonly Reg: "reg"; readonly Spa: "spa"; readonly M2m: "m2m"; }; export type CreateApplicationRequestTypeEnum = typeof CreateApplicationRequestTypeEnum[keyof typeof CreateApplicationRequestTypeEnum]; /** * Check if a given object implements the CreateApplicationRequest interface. */ export declare function instanceOfCreateApplicationRequest(value: object): boolean; export declare function CreateApplicationRequestFromJSON(json: any): CreateApplicationRequest; export declare function CreateApplicationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateApplicationRequest; export declare function CreateApplicationRequestToJSON(value?: CreateApplicationRequest | null): any;