box-typescript-sdk-gen
Version:
Official Box TypeScript Generated SDK
16 lines • 642 B
TypeScript
import { Task } from './task.generated.js';
import { SerializedData } from '../serialization/json.js';
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;
//# sourceMappingURL=tasks.generated.d.ts.map