/** * 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 AddAPIsRequest */ export interface AddAPIsRequest { /** * * @type {string} * @memberof AddAPIsRequest */ name: string; /** * * @type {string} * @memberof AddAPIsRequest */ audience: string; } /** * Check if a given object implements the AddAPIsRequest interface. */ export declare function instanceOfAddAPIsRequest(value: object): boolean; export declare function AddAPIsRequestFromJSON(json: any): AddAPIsRequest; export declare function AddAPIsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddAPIsRequest; export declare function AddAPIsRequestToJSON(value?: AddAPIsRequest | null): any;