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