dc-management-sdk-js
Version:
Amplience Dynamic Content Management SDK
16 lines (15 loc) • 391 B
TypeScript
import { HalResource } from '../hal/models/HalResource';
import { Snapshot } from './Snapshot';
/**
* Resource containing the results of a batch snapshot create request.
*/
export declare class SnapshotResultList extends HalResource {
/**
* The Hub ID associated to the Snapshots
*/
hubId: string;
/**
* The result Snapshots
*/
snapshots: Snapshot[];
}