Type Alias PersonalAccessTokenProps

PersonalAccessTokenProps: {
    name: string;
    revokedAt: null | string;
    scopes: "content_management_manage"[];
    sys: MetaSysProps & {
        expiresAt?: string;
    };
    token?: string;
}