All files / src/ODataApi ODataBatchResponse.ts

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1
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 }[],
    };
 
}