PlaceHoursInterval: {
    __typename?: "PlaceHoursInterval";
    comment?: Maybe<Scalars["String"]>;
    from: Scalars["String"];
    publicHolidays: PlaceHoursIntervalHoliday[];
    status: PlaceHoursStatus;
    to?: Maybe<Scalars["String"]>;
}

The opening hours for a place during the interval between two datetimes

Type declaration

  • Optional __typename?: "PlaceHoursInterval"
  • Optional comment?: Maybe<Scalars["String"]>

    The place hours comment (if any) during this interval

  • from: Scalars["String"]

    The starting datetime of this interval

  • publicHolidays: PlaceHoursIntervalHoliday[]

    The holidays that occur during this interval

    Note: Will return holidays up to a maximum of one year from the "from" date

  • status: PlaceHoursStatus

    The open/closed status of the place during this interval

  • Optional to?: Maybe<Scalars["String"]>

    The ending datetime of this interval, will be null if there is no following interval and the status/comment will no longer change

Generated using TypeDoc