Source File
tl_channels_get_groups_for_discussion_gen.go
Belonging Package
github.com/gotd/td/tg
// Code generated by gotdgen, DO NOT EDIT.
package tg
import (
)
// No-op definition for keeping imports.
var (
_ = bin.Buffer{}
_ = context.Background()
_ = fmt.Stringer(nil)
_ = strings.Builder{}
_ = errors.Is
_ = multierr.AppendInto
_ = sort.Ints
_ = tdp.Format
_ = tgerr.Error{}
_ = tdjson.Encoder{}
)
// ChannelsGetGroupsForDiscussionRequest represents TL type `channels.getGroupsForDiscussion#f5dad378`.
// Get all groups that can be used as discussion groups¹.
// Returned basic group chats¹ must be first upgraded to supergroups² before they can
// be set as a discussion group.
// To set a returned supergroup as a discussion group, access to its old messages must be
// enabled using channels.togglePreHistoryHidden³, first.
//
// Links:
// 1. https://core.telegram.org/api/discussion
// 2. https://core.telegram.org/api/channel#basic-groups
// 3. https://core.telegram.org/api/channel#supergroups
// 4. https://core.telegram.org/method/channels.togglePreHistoryHidden
//
// See https://core.telegram.org/method/channels.getGroupsForDiscussion for reference.
type ChannelsGetGroupsForDiscussionRequest struct {
}
// ChannelsGetGroupsForDiscussionRequestTypeID is TL type id of ChannelsGetGroupsForDiscussionRequest.
const ChannelsGetGroupsForDiscussionRequestTypeID = 0xf5dad378
// Ensuring interfaces in compile-time for ChannelsGetGroupsForDiscussionRequest.
var (
_ bin.Encoder = &ChannelsGetGroupsForDiscussionRequest{}
_ bin.Decoder = &ChannelsGetGroupsForDiscussionRequest{}
_ bin.BareEncoder = &ChannelsGetGroupsForDiscussionRequest{}
_ bin.BareDecoder = &ChannelsGetGroupsForDiscussionRequest{}
)
func ( *ChannelsGetGroupsForDiscussionRequest) () bool {
if == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func ( *ChannelsGetGroupsForDiscussionRequest) () string {
if == nil {
return "ChannelsGetGroupsForDiscussionRequest(nil)"
}
type ChannelsGetGroupsForDiscussionRequest
return fmt.Sprintf("ChannelsGetGroupsForDiscussionRequest%+v", (*))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*ChannelsGetGroupsForDiscussionRequest) () uint32 {
return ChannelsGetGroupsForDiscussionRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*ChannelsGetGroupsForDiscussionRequest) () string {
return "channels.getGroupsForDiscussion"
}
// TypeInfo returns info about TL type.
func ( *ChannelsGetGroupsForDiscussionRequest) () tdp.Type {
:= tdp.Type{
Name: "channels.getGroupsForDiscussion",
ID: ChannelsGetGroupsForDiscussionRequestTypeID,
}
if == nil {
.Null = true
return
}
.Fields = []tdp.Field{}
return
}
// Encode implements bin.Encoder.
func ( *ChannelsGetGroupsForDiscussionRequest) ( *bin.Buffer) error {
if == nil {
return fmt.Errorf("can't encode channels.getGroupsForDiscussion#f5dad378 as nil")
}
.PutID(ChannelsGetGroupsForDiscussionRequestTypeID)
return .EncodeBare()
}
// EncodeBare implements bin.BareEncoder.
func ( *ChannelsGetGroupsForDiscussionRequest) ( *bin.Buffer) error {
if == nil {
return fmt.Errorf("can't encode channels.getGroupsForDiscussion#f5dad378 as nil")
}
return nil
}
// Decode implements bin.Decoder.
func ( *ChannelsGetGroupsForDiscussionRequest) ( *bin.Buffer) error {
if == nil {
return fmt.Errorf("can't decode channels.getGroupsForDiscussion#f5dad378 to nil")
}
if := .ConsumeID(ChannelsGetGroupsForDiscussionRequestTypeID); != nil {
return fmt.Errorf("unable to decode channels.getGroupsForDiscussion#f5dad378: %w", )
}
return .DecodeBare()
}
// DecodeBare implements bin.BareDecoder.
func ( *ChannelsGetGroupsForDiscussionRequest) ( *bin.Buffer) error {
if == nil {
return fmt.Errorf("can't decode channels.getGroupsForDiscussion#f5dad378 to nil")
}
return nil
}
// ChannelsGetGroupsForDiscussion invokes method channels.getGroupsForDiscussion#f5dad378 returning error if any.
// Get all groups that can be used as discussion groups¹.
// Returned basic group chats¹ must be first upgraded to supergroups² before they can
// be set as a discussion group.
// To set a returned supergroup as a discussion group, access to its old messages must be
// enabled using channels.togglePreHistoryHidden³, first.
//
// Links:
// 1. https://core.telegram.org/api/discussion
// 2. https://core.telegram.org/api/channel#basic-groups
// 3. https://core.telegram.org/api/channel#supergroups
// 4. https://core.telegram.org/method/channels.togglePreHistoryHidden
//
// See https://core.telegram.org/method/channels.getGroupsForDiscussion for reference.
func ( *Client) ( context.Context) (MessagesChatsClass, error) {
var MessagesChatsBox
:= &ChannelsGetGroupsForDiscussionRequest{}
if := .rpc.Invoke(, , &); != nil {
return nil,
}
return .Chats, nil
}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |