An educational institution

interface Flock {
    bannerUrl: string;
    createdAt: Date;
    id: string;
    latitude: number;
    longitude: number;
    membersCount: number;
    updatedAt: Date;
    username: string;
}

Properties

bannerUrl: string

The banner image URL for the Flock

createdAt: Date

The creation date of the Flock

Example

Observed: 2023-05-19T06:43:56.782Z
id: string

The unique id of the Flock

latitude: number

Latitude of the Flock's location

longitude: number

Longitude of the Flock's location

membersCount: number

The number of Users in the Flock

updatedAt: Date

The time of the last change to the Flock

Example

Observed: 2023-05-19T06:43:56.782Z
username: string

The display name of the Flock

Generated using TypeDoc