import { ProtocolEnum } from '../ProtocolEnum';
import { StatusEnum } from './StatusEnum';
/** Share snapshot */
export interface Snapshot {
    /** The date and timestamp when the resource was created */
    createdAt: string;
    /** Snapshot description */
    description?: string;
    /** Snapshot ID */
    id: string;
    /** Snapshot name */
    name?: string;
    /** Share ID */
    shareId: string;
    /** Share protocol */
    shareProtocol?: ProtocolEnum;
    /** Share size in GB */
    shareSize: number;
    /** Snapshot size in GB */
    size: number;
    /** Snapshot status */
    status: StatusEnum;
}
//# sourceMappingURL=Snapshot.d.ts.map