/** * 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 Apis */ export interface Apis { /** * Unique id of the API. * @type {string} * @memberof Apis */ id?: string; /** * The API's name. * @type {string} * @memberof Apis */ name?: string; /** * The logical identifier for the API. * @type {string} * @memberof Apis */ audience?: string; /** * Whether it is the management API or not. * @type {boolean} * @memberof Apis */ isManagementApi?: boolean; } /** * Check if a given object implements the Apis interface. */ export declare function instanceOfApis(value: object): boolean; export declare function ApisFromJSON(json: any): Apis; export declare function ApisFromJSONTyped(json: any, ignoreDiscriminator: boolean): Apis; export declare function ApisToJSON(value?: Apis | null): any;