interface ContentHistory {
    _expandable?: {
        contributors?: string;
        lastOwnedBy?: string;
        lastUpdated?: string;
        nextVersion?: string;
        ownedBy?: string;
        previousVersion?: string;
    } & {
        [key: string]: unknown;
    };
    _links?: GenericLinks;
    contributors?: {
        publishers?: null | UsersUserKeys;
    } & {
        [key: string]: unknown;
    };
    createdBy?: null | UserV1;
    createdDate?: string;
    lastOwnedBy?: null | UserV1;
    lastUpdated?: null | VersionV1;
    latest: boolean;
    nextVersion?: null | VersionV1;
    ownedBy?: null | UserV1;
    previousVersion?: null | VersionV1;
}

Hierarchy

  • Record<string, unknown>
    • ContentHistory

Properties

_expandable?: {
    contributors?: string;
    lastOwnedBy?: string;
    lastUpdated?: string;
    nextVersion?: string;
    ownedBy?: string;
    previousVersion?: string;
} & {
    [key: string]: unknown;
}
_links?: GenericLinks
contributors?: {
    publishers?: null | UsersUserKeys;
} & {
    [key: string]: unknown;
}
createdBy?: null | UserV1
createdDate?: string
lastOwnedBy?: null | UserV1
lastUpdated?: null | VersionV1
latest: boolean
nextVersion?: null | VersionV1
ownedBy?: null | UserV1
previousVersion?: null | VersionV1