@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 488 B
TypeScript
import { SyncLicenseEnum } from './SyncLicenseEnum';
import { ObjectStateEnum } from './ObjectStateEnum';
/** Sync account information */
export interface SyncInformation {
/** Indicates if the account is configured */
configured: boolean;
/** Sync account license */
license: SyncLicenseEnum;
/** Sync account state */
state: ObjectStateEnum;
/** Pending task for this sync account */
taskPendingId: number;
}
//# sourceMappingURL=SyncInformation.d.ts.map