The public chat profile of a User

interface ChatProfile {
    address: null | Address;
    age: null | Age;
    createdAt: Date;
    gender: null | Gender;
    id: string;
    latitude: null | number;
    longitude: null | number;
    updatedAt: Date;
    userId: string;
}

Properties

address: null | Address

The Address of the ChatProfile, if set.

age: null | Age

The age of the ChatProfile, if set.

createdAt: Date

The creation date of the ChatProfile

Example

Observed: 2023-03-26T19:27:48.081Z
gender: null | Gender

The gender of the ChatProfile, if set.

id: string

The unique id of the ChatProfile

latitude: null | number

Latitude of the ChatProfile's location

longitude: null | number

Longitude of the ChatProfile's location

updatedAt: Date

The time of the last change to the ChatProfile

Example

Observed: 2024-02-22T12:04:15.320Z
userId: string

The User#id of the ChatProfile

Generated using TypeDoc