/** * 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 ApiResult */ export interface ApiResult { /** * The result of the api operation. * @type {string} * @memberof ApiResult */ result?: string; } /** * Check if a given object implements the ApiResult interface. */ export declare function instanceOfApiResult(value: object): boolean; export declare function ApiResultFromJSON(json: any): ApiResult; export declare function ApiResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiResult; export declare function ApiResultToJSON(value?: ApiResult | null): any;