/** * 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 { Applications } from './Applications.js'; /** * * @export * @interface GetApplicationsResponse */ export interface GetApplicationsResponse { /** * Response code. * @type {string} * @memberof GetApplicationsResponse */ code?: string; /** * Response message. * @type {string} * @memberof GetApplicationsResponse */ message?: string; /** * * @type {Array} * @memberof GetApplicationsResponse */ applications?: Array; /** * Pagination token. * @type {string} * @memberof GetApplicationsResponse */ nextToken?: string; } /** * Check if a given object implements the GetApplicationsResponse interface. */ export declare function instanceOfGetApplicationsResponse(value: object): boolean; export declare function GetApplicationsResponseFromJSON(json: any): GetApplicationsResponse; export declare function GetApplicationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApplicationsResponse; export declare function GetApplicationsResponseToJSON(value?: GetApplicationsResponse | null): any;