box-node-sdk
Version:
Official SDK for Box Platform APIs
14 lines (13 loc) • 546 B
TypeScript
import { TermsOfService } from './termsOfService';
import { SerializedData } from '../serialization/json';
export interface TermsOfServices {
/**
* The total number of objects. */
readonly totalCount?: number;
/**
* A list of terms of service objects. */
readonly entries?: readonly TermsOfService[];
readonly rawData?: SerializedData;
}
export declare function serializeTermsOfServices(val: TermsOfServices): SerializedData;
export declare function deserializeTermsOfServices(val: SerializedData): TermsOfServices;