/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * 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 UserProperty */ export interface UserProperty { /** * * @type {string} * @memberof UserProperty */ name: string; /** * * @type {string} * @memberof UserProperty */ value: string; } /** * Check if a given object implements the UserProperty interface. */ export declare function instanceOfUserProperty(value: any): value is UserProperty; export declare function UserPropertyFromJSON(json: any): UserProperty; export declare function UserPropertyFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UserProperty; export declare function UserPropertyToJSON(value?: UserProperty | null, _ignoreDiscriminator?: boolean): any;