Type Alias AssignmentsResponse

{
* data: [
* {
* created: "2020-12-03T09:24:48.114Z",
* excess: false,
* subject: "qlik\kalle",
* type: "analyzer"
* },
* {
* created: "2020-12-03T09:24:48.114Z",
* subject: "qlik\nalle"
* }
* ],
* links: {
* next: {
* href: "http://license/v1/licenses/assignments?limit=4&page=bmV4dDpGZ0FBQUFkZmFXUUFYOHBUcTlpM1U4UU1YWHZrQUE%3D"
* },
* prev: {
* href: "http://license/v1/licenses/assignments?limit=4&page=cHJldjpGZ0FBQUFkZmFXUUFYOHBUcTlpM1U4UU1YWHZ0QUE%3D"
* }
* }
* }
type AssignmentsResponse = {
    data: {
        created: string;
        excess: boolean;
        subject: string;
        type: string;
    }[];
    links: { next?: Href; prev?: Href };
}
Index

Properties

Properties

data: { created: string; excess: boolean; subject: string; type: string }[]

Type declaration

  • created: string

    Assignment created date.

  • excess: boolean

    Assignment excess status.

  • subject: string

    Subject

  • type: string

    Allotment type

links: { next?: Href; prev?: Href }