interface Application {
    createdAt?: Date;
    deletable: boolean;
    description: string;
    editable: boolean;
    id: string;
    managed: boolean;
    name: string;
    nbApiKeys: number;
    organizationId: string;
    tags: string[];
    updatedAt?: Date;
}

Properties

createdAt?: Date

Date and time application was created.

deletable: boolean

Defines whether or not the application is deletable.

description: string

Description of the application.

editable: boolean

Defines whether or not the application is editable.

id: string

ID of the application.

managed: boolean

Defines whether or not the application is managed.

name: string

Name of the application.

nbApiKeys: number

Number of API keys attributed to the application.

organizationId: string

ID of the Organization.

tags: string[]

Tags associated with the user.

updatedAt?: Date

Date and time of last application update.