@lxdhub/api
Version:
Display, search and copy LXD-images using a web interface.
35 lines (31 loc) • 679 B
text/typescript
import { Type } from 'class-transformer';
import { IsDefined, IsInt, Min } from 'class-validator';
/**
* The CloneStatusDto represents the data
* transfer object, which is used for requesting
* the status of a clone operation
*/
export class CloneStatusDto {
/**
* The id of the destination remote
*/
destinationRemoteId: number;
/**
* The operation UUID from the LXD Server
*/
operation: string;
/**
* The id of the image
*/
imageId: number;
}