/** * 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 { Organization } from './Organization.js'; /** * * @export * @interface GetOrganizationsResponse */ export interface GetOrganizationsResponse { /** * Response code. * @type {string} * @memberof GetOrganizationsResponse */ code?: string; /** * Response message. * @type {string} * @memberof GetOrganizationsResponse */ message?: string; /** * * @type {Array} * @memberof GetOrganizationsResponse */ organizations?: Array; /** * Pagination token. * @type {string} * @memberof GetOrganizationsResponse */ nextToken?: string; } /** * Check if a given object implements the GetOrganizationsResponse interface. */ export declare function instanceOfGetOrganizationsResponse(value: object): boolean; export declare function GetOrganizationsResponseFromJSON(json: any): GetOrganizationsResponse; export declare function GetOrganizationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetOrganizationsResponse; export declare function GetOrganizationsResponseToJSON(value?: GetOrganizationsResponse | null): any;