/** * 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 { ApiApplicationsInner } from './ApiApplicationsInner.js'; /** * * @export * @interface Api */ export interface Api { /** * The API's unique identifier. * @type {string} * @memberof Api */ id?: string; /** * Response code. * @type {string} * @memberof Api */ code?: string; /** * The API's name. * @type {string} * @memberof Api */ name?: string; /** * Response message. * @type {string} * @memberof Api */ message?: string; /** * The API's audience. * @type {string} * @memberof Api */ audience?: string; /** * * @type {Array} * @memberof Api */ applications?: Array; } /** * Check if a given object implements the Api interface. */ export declare function instanceOfApi(value: object): boolean; export declare function ApiFromJSON(json: any): Api; export declare function ApiFromJSONTyped(json: any, ignoreDiscriminator: boolean): Api; export declare function ApiToJSON(value?: Api | null): any;