/** * 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 Applications */ export interface Applications { /** * * @type {string} * @memberof Applications */ id?: string; /** * * @type {string} * @memberof Applications */ name?: string; /** * * @type {string} * @memberof Applications */ type?: string; } /** * Check if a given object implements the Applications interface. */ export declare function instanceOfApplications(value: object): boolean; export declare function ApplicationsFromJSON(json: any): Applications; export declare function ApplicationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Applications; export declare function ApplicationsToJSON(value?: Applications | null): any;