/** * 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 { PropertyValue } from './PropertyValue.js'; /** * * @export * @interface GetPropertyValuesResponse */ export interface GetPropertyValuesResponse { /** * Response code. * @type {string} * @memberof GetPropertyValuesResponse */ code?: string; /** * Response message. * @type {string} * @memberof GetPropertyValuesResponse */ message?: string; /** * * @type {Array} * @memberof GetPropertyValuesResponse */ properties?: Array; /** * Pagination token. * @type {string} * @memberof GetPropertyValuesResponse */ nextToken?: string; } /** * Check if a given object implements the GetPropertyValuesResponse interface. */ export declare function instanceOfGetPropertyValuesResponse(value: object): boolean; export declare function GetPropertyValuesResponseFromJSON(json: any): GetPropertyValuesResponse; export declare function GetPropertyValuesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPropertyValuesResponse; export declare function GetPropertyValuesResponseToJSON(value?: GetPropertyValuesResponse | null): any;