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