Type Alias AssignmentsActionsUpdateResponse

{
* data: [
* {
* sourceType: "analyzer",
* status: 200,
* subject: "qlik\malik",
* type: "professional"
* },
* {
* code: "LICENSES-016",
* sourceType: "analyzer",
* status: 404,
* subject: "qlik/sara",
* title: "Assignment not found."
* }
* ]
* }
type AssignmentsActionsUpdateResponse = {
    data: {
        code?: string;
        sourceSubject?: string;
        sourceType?: string;
        status: number;
        subject?: string;
        title?: string;
        type?: string;
    }[];
}
Index

Properties

Properties

data: {
    code?: string;
    sourceSubject?: string;
    sourceType?: string;
    status: number;
    subject?: string;
    title?: string;
    type?: string;
}[]

Type declaration

  • Optionalcode?: string

    Error code

  • OptionalsourceSubject?: string

    Current subject.

  • OptionalsourceType?: string

    Current allotment type.

  • status: number

    HTTP status code indicating the result of the individual assignment operation. A value of 200 represents a successful update, while 201 indicates a new resource was created due to a subject update. Any 400-level status codes indicate an error.

  • Optionalsubject?: string

    Target subject.

  • Optionaltitle?: string

    Error title

  • Optionaltype?: string

    Target allotment type.