Type Alias AssignmentsActionsUpdateRequest

{
* update: [
* {
* sourceType: "analyzer",
* subject: "qlik\malik",
* type: "professional"
* }
* ]
* }
type AssignmentsActionsUpdateRequest = {
    update: {
        sourceSubject?: string;
        sourceType?: string;
        subject: string;
        type?: string;
    }[];
}
Index

Properties

Properties

update: {
    sourceSubject?: string;
    sourceType?: string;
    subject: string;
    type?: string;
}[]

Type declaration

  • OptionalsourceSubject?: string

    The current user subject, in case that should be patched.

  • OptionalsourceType?: string

    Current assignment type.

  • subject: string

    User subject, the current or the desired after the patch.

  • Optionaltype?: string

    Target assignment type.