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
  • OptionalsourceType?: string
  • status: number
  • Optionalsubject?: string
  • Optionaltitle?: string
  • Optionaltype?: string