/** * 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 { Property } from './Property.js'; /** * * @export * @interface GetPropertiesResponse */ export interface GetPropertiesResponse { /** * Response code. * @type {string} * @memberof GetPropertiesResponse */ code?: string; /** * Response message. * @type {string} * @memberof GetPropertiesResponse */ message?: string; /** * * @type {Array} * @memberof GetPropertiesResponse */ properties?: Array; /** * Whether more records exist. * @type {boolean} * @memberof GetPropertiesResponse */ hasMore?: boolean; } /** * Check if a given object implements the GetPropertiesResponse interface. */ export declare function instanceOfGetPropertiesResponse(value: object): boolean; export declare function GetPropertiesResponseFromJSON(json: any): GetPropertiesResponse; export declare function GetPropertiesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPropertiesResponse; export declare function GetPropertiesResponseToJSON(value?: GetPropertiesResponse | null): any;