Raw.BusinessWeeklyOpen

Raw.BusinessWeeklyOpen

A time interval, indicating the opening hours of a business.

businessWeeklyOpen#120b1ab9 start_minute:int end_minute:int = BusinessWeeklyOpen;
export namespace Raw {
  export class BusinessWeeklyOpen {
    constructor(params: { startMinute: number; endMinute: number }) {}
  }
}
🚫

This is a types constructor, you can’t use it as method when call invoke.

Layer: 185
Constructor ID: 0x120b1ab9

Property

  • startMinute : number

    Start minute in minutes of the week, 0 to 72460 inclusively.

  • endMinute : number

    End minute in minutes of the week, 1 to 82460 inclusively (8 and not 7 because this allows to specify intervals that, for example, start on sunday 21:00 and end on monday 04:00 (62460+2160 to 72460+460) without passing an invalid endMinute < startMinute). see here for more info.