Source File
tl_destroy_session_gen.go
Belonging Package
github.com/gotd/td/internal/mt
// Code generated by gotdgen, DO NOT EDIT.
package mt
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{}
)
// DestroySessionRequest represents TL type `destroy_session#e7512126`.
type DestroySessionRequest struct {
// SessionID field of DestroySessionRequest.
SessionID int64
}
// DestroySessionRequestTypeID is TL type id of DestroySessionRequest.
const DestroySessionRequestTypeID = 0xe7512126
// Ensuring interfaces in compile-time for DestroySessionRequest.
var (
_ bin.Encoder = &DestroySessionRequest{}
_ bin.Decoder = &DestroySessionRequest{}
_ bin.BareEncoder = &DestroySessionRequest{}
_ bin.BareDecoder = &DestroySessionRequest{}
)
func ( *DestroySessionRequest) () bool {
if == nil {
return true
}
if !(.SessionID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func ( *DestroySessionRequest) () string {
if == nil {
return "DestroySessionRequest(nil)"
}
type DestroySessionRequest
return fmt.Sprintf("DestroySessionRequest%+v", (*))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*DestroySessionRequest) () uint32 {
return DestroySessionRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*DestroySessionRequest) () string {
return "destroy_session"
}
// TypeInfo returns info about TL type.
func ( *DestroySessionRequest) () tdp.Type {
:= tdp.Type{
Name: "destroy_session",
ID: DestroySessionRequestTypeID,
}
if == nil {
.Null = true
return
}
.Fields = []tdp.Field{
{
Name: "SessionID",
SchemaName: "session_id",
},
}
return
}
// Encode implements bin.Encoder.
func ( *DestroySessionRequest) ( *bin.Buffer) error {
if == nil {
return fmt.Errorf("can't encode destroy_session#e7512126 as nil")
}
.PutID(DestroySessionRequestTypeID)
return .EncodeBare()
}
// EncodeBare implements bin.BareEncoder.
func ( *DestroySessionRequest) ( *bin.Buffer) error {
if == nil {
return fmt.Errorf("can't encode destroy_session#e7512126 as nil")
}
.PutLong(.SessionID)
return nil
}
// Decode implements bin.Decoder.
func ( *DestroySessionRequest) ( *bin.Buffer) error {
if == nil {
return fmt.Errorf("can't decode destroy_session#e7512126 to nil")
}
if := .ConsumeID(DestroySessionRequestTypeID); != nil {
return fmt.Errorf("unable to decode destroy_session#e7512126: %w", )
}
return .DecodeBare()
}
// DecodeBare implements bin.BareDecoder.
func ( *DestroySessionRequest) ( *bin.Buffer) error {
if == nil {
return fmt.Errorf("can't decode destroy_session#e7512126 to nil")
}
{
, := .Long()
if != nil {
return fmt.Errorf("unable to decode destroy_session#e7512126: field session_id: %w", )
}
.SessionID =
}
return nil
}
// GetSessionID returns value of SessionID field.
func ( *DestroySessionRequest) () ( int64) {
if == nil {
return
}
return .SessionID
}
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. |