Raw.phone.CreateGroupCall

Raw.phone.CreateGroupCall

Create a group call or livestream

phone.createGroupCall#48cdc6d8 flags:# rtmp_stream:flags.2?true peer:InputPeer random_id:int title:flags.0?string schedule_date:flags.1?int = Updates;
export namespace Raw {
  export namespace phone {
    export class CreateGroupCall {
      constructor(params: {
        rtmpStream?: boolean;
        peer: Raw.TypeInputPeer;
        randomId: number;
        title?: string;
        scheduleDate?: number;
      }) {}
    }
  }
}

This is a function constructor, you can use it as method when call invoke

Layer: 185
Constructor ID: 0x48cdc6d8

Property

  • rtmpStream : boolean or undefined

    Whether rtmp stream support should be enabled: only the group/supergroup/channel owner can use this flag.

  • peer : Raw.TypeInputPeer

    Associate the group call or livestream to the provided group/supergroup/channel

  • randomId : number

    Unique client message id required to prevent creation of duplicate group calls

  • title : string or undefined

    Call title

  • scheduleDate : number or undefined

    For scheduled group call or livestreams, the absolute date when the group call will start

Results

Raw.TypeUpdates