/** * 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 GetApplicationResponseApplication */ export interface GetApplicationResponseApplication { /** * The application's identifier. * @type {string} * @memberof GetApplicationResponseApplication */ id?: string; /** * The application's name. * @type {string} * @memberof GetApplicationResponseApplication */ name?: string; /** * The application's type. * @type {string} * @memberof GetApplicationResponseApplication */ type?: string; /** * The application's client id. * @type {string} * @memberof GetApplicationResponseApplication */ clientId?: string; /** * The application's client secret. * @type {string} * @memberof GetApplicationResponseApplication */ clientSecret?: string; } /** * Check if a given object implements the GetApplicationResponseApplication interface. */ export declare function instanceOfGetApplicationResponseApplication(value: object): boolean; export declare function GetApplicationResponseApplicationFromJSON(json: any): GetApplicationResponseApplication; export declare function GetApplicationResponseApplicationFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApplicationResponseApplication; export declare function GetApplicationResponseApplicationToJSON(value?: GetApplicationResponseApplication | null): any;