interface Organization {
    createdAt?: string;
    description?: string;
    id?: string;
    links?: {
        buckets?: string;
        dashboards?: string;
        labels?: string;
        members?: string;
        owners?: string;
        secrets?: string;
        self?: string;
        tasks?: string;
    };
    name: string;
    status?: "active"
    | "inactive";
    updatedAt?: string;
}

Properties

createdAt?: string
description?: string
id?: string
links?: {
    buckets?: string;
    dashboards?: string;
    labels?: string;
    members?: string;
    owners?: string;
    secrets?: string;
    self?: string;
    tasks?: string;
}
name: string
status?: "active" | "inactive"

If inactive the organization is inactive.

updatedAt?: string
MMNEPVFCICPMFPCPTTAAATR