UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

19 lines (18 loc) 878 B
import { SerializedData } from '../serialization/json'; export interface MetadataFieldFilterFloatRange { /** * Specifies the (inclusive) upper bound for the metadata field * value. The value of a field must be lower than (`lt`) or * equal to this value for the search query to match this * template. */ readonly lt?: number; /** * Specifies the (inclusive) lower bound for the metadata field * value. The value of a field must be greater than (`gt`) or * equal to this value for the search query to match this * template. */ readonly gt?: number; readonly rawData?: SerializedData; } export declare function serializeMetadataFieldFilterFloatRange(val: MetadataFieldFilterFloatRange): SerializedData; export declare function deserializeMetadataFieldFilterFloatRange(val: SerializedData): MetadataFieldFilterFloatRange;