/** * 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. */ import type { CreateApplicationResponseApplication } from './CreateApplicationResponseApplication.js'; /** * * @export * @interface CreateApplicationResponse */ export interface CreateApplicationResponse { /** * Response code. * @type {string} * @memberof CreateApplicationResponse */ code?: string; /** * Response message. * @type {string} * @memberof CreateApplicationResponse */ message?: string; /** * * @type {CreateApplicationResponseApplication} * @memberof CreateApplicationResponse */ application?: CreateApplicationResponseApplication; } /** * Check if a given object implements the CreateApplicationResponse interface. */ export declare function instanceOfCreateApplicationResponse(value: object): boolean; export declare function CreateApplicationResponseFromJSON(json: any): CreateApplicationResponse; export declare function CreateApplicationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateApplicationResponse; export declare function CreateApplicationResponseToJSON(value?: CreateApplicationResponse | null): any;