Package version:

Metadata pertaining to creation and last modification of the resource.

interface SystemData {
    createdAt?: Date;
    createdBy?: string;
    createdByType?: string;
    lastModifiedAt?: Date;
    lastModifiedBy?: string;
    lastModifiedByType?: string;
}

Properties

createdAt?: Date

The timestamp of resource creation (UTC).

createdBy?: string

The identity that created the resource.

createdByType?: string

The type of identity that created the resource.

lastModifiedAt?: Date

The timestamp of resource last modification (UTC)

lastModifiedBy?: string

The identity that last modified the resource.

lastModifiedByType?: string

The type of identity that last modified the resource.