Type alias TenantCreate

TenantCreate: TenantBase & {
    activityStatus?: "ACTIVE" | "INACTIVE";
}

The expected type when creating a tenant.

Type declaration

  • Optional activityStatus?: "ACTIVE" | "INACTIVE"

    The activity status of the tenant. Defaults to 'ACTIVE' if not provided.