interface VenueImage {
    creationDate: number;
    id: string;
    isApproved: boolean;
    url: string;
}

Properties

creationDate: number

The date the image was created (Unix timestamp in milliseconds).

id: string

The ID of the image.

isApproved: boolean

Whether the image is approved.

url: string

The url of the image.