/** * 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 UpdatePropertyRequest */ export interface UpdatePropertyRequest { /** * The name of the property. * @type {string} * @memberof UpdatePropertyRequest */ name: string; /** * Description of the property purpose. * @type {string} * @memberof UpdatePropertyRequest */ description?: string; /** * Whether the property can be included in id and access tokens. * @type {boolean} * @memberof UpdatePropertyRequest */ isPrivate: boolean; /** * Which category the property belongs to. * @type {string} * @memberof UpdatePropertyRequest */ categoryId: string; } /** * Check if a given object implements the UpdatePropertyRequest interface. */ export declare function instanceOfUpdatePropertyRequest(value: object): boolean; export declare function UpdatePropertyRequestFromJSON(json: any): UpdatePropertyRequest; export declare function UpdatePropertyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatePropertyRequest; export declare function UpdatePropertyRequestToJSON(value?: UpdatePropertyRequest | null): any;