interface AppUpload {
    sys: {
        createdAt: string;
        createdBy?: SysLink;
        id: string;
        type: string;
        updatedAt: string;
        updatedBy?: SysLink;
    } & {
        expiresAt: string;
        organization: SysLink;
    };
    delete(): Promise<void>;
    toPlainObject(): AppUploadProps;
}

Hierarchy (view full)

Properties

Methods

Properties

sys: {
    createdAt: string;
    createdBy?: SysLink;
    id: string;
    type: string;
    updatedAt: string;
    updatedBy?: SysLink;
} & {
    expiresAt: string;
    organization: SysLink;
}

Methods

  • Deletes this object on the server.

    Returns Promise<void>

    Promise for the deletion. It contains no data, but the Promise error case should be handled.