/** * 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 PropertyValue */ export interface PropertyValue { /** * * @type {string} * @memberof PropertyValue */ id?: string; /** * * @type {string} * @memberof PropertyValue */ name?: string; /** * * @type {string} * @memberof PropertyValue */ description?: string; /** * * @type {string} * @memberof PropertyValue */ key?: string; /** * * @type {string} * @memberof PropertyValue */ value?: string; } /** * Check if a given object implements the PropertyValue interface. */ export declare function instanceOfPropertyValue(value: object): boolean; export declare function PropertyValueFromJSON(json: any): PropertyValue; export declare function PropertyValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValue; export declare function PropertyValueToJSON(value?: PropertyValue | null): any;