box-node-sdk
Version:
Official SDK for Box Platform APIs
16 lines (15 loc) • 582 B
TypeScript
import { Task } from './task';
import { SerializedData } from '../serialization/json';
export interface Tasks {
/**
* One greater than the offset of the last entry in the entire collection.
* The total number of entries in the collection may be less than
* `total_count`. */
readonly totalCount?: number;
/**
* A list of tasks. */
readonly entries?: readonly Task[];
readonly rawData?: SerializedData;
}
export declare function serializeTasks(val: Tasks): SerializedData;
export declare function deserializeTasks(val: SerializedData): Tasks;