export type UpdatePropertyRequest = {
    /**
     * The description of the property. If not provided, is set to an empty `string`.
     */
    description?: string;
    /**
     * Whether the backend storage is optimized for searches on this property. Cannot be set to `true` for properties with data types `LONG_TEXT`, `JSON`, or `BLOB`, or custom data types based on those types.
     */
    is_index?: boolean;
    /**
     * Whether the backend storage is optimized for substring searches on this property. Can only be set to change the value to 'false'.
     */
    is_substring_index?: boolean;
    /**
     * Whether this property can have no value.
     */
    is_nullable?: boolean;
    /**
     * Whether the backend storage enforces unique values for active objects.
     */
    is_unique?: boolean;
};
//# sourceMappingURL=UpdatePropertyRequest.d.ts.map