1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1x | /** * @module ODataApi */ /** */ import { ISavedContent } from '../Content'; // tslint:disable:naming-convention /** * Represents a Batch Operation response from Batch Copy/Move/Delete action */ export class ODataBatchResponse<T extends ISavedContent = ISavedContent> { public d: { __count: number, results: T[], errors: { content: T, error: any }[], }; } |