Raw.channels.ToggleSignatures

Raw.channels.ToggleSignatures

Enable/disable message signatures in channels

channels.toggleSignatures#418d549c flags:# signatures_enabled:flags.0?true profiles_enabled:flags.1?true channel:InputChannel = Updates;
export namespace Raw {
  export namespace channels {
    export class ToggleSignatures {
      constructor(params: {
        signaturesEnabled?: boolean;
        profilesEnabled?: boolean;
        channel: Raw.TypeInputChannel;
      }) {}
    }
  }
}

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

Layer: 198
Constructor ID: 0x418d549c

Property

  • signaturesEnabled : boolean or undefined

    If set, enables message signatures.

  • profilesEnabled : boolean or undefined

    If set, messages from channel admins will link to their profiles, just like for group messages: can only be set if the signaturesEnabled flag is set.

  • channel : Raw.TypeInputChannel

    Channel

Results

Raw.TypeUpdates