/** * 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 { GetApplicationResponseApplication } from './GetApplicationResponseApplication.js'; /** * * @export * @interface GetApplicationResponse */ export interface GetApplicationResponse { /** * Response code. * @type {string} * @memberof GetApplicationResponse */ code?: string; /** * Response message. * @type {string} * @memberof GetApplicationResponse */ message?: string; /** * * @type {GetApplicationResponseApplication} * @memberof GetApplicationResponse */ application?: GetApplicationResponseApplication; } /** * Check if a given object implements the GetApplicationResponse interface. */ export declare function instanceOfGetApplicationResponse(value: object): boolean; export declare function GetApplicationResponseFromJSON(json: any): GetApplicationResponse; export declare function GetApplicationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApplicationResponse; export declare function GetApplicationResponseToJSON(value?: GetApplicationResponse | null): any;