// Code generated by gotdgen, DO NOT EDIT. package td import ( "context" "errors" "fmt" "sort" "strings" "go.uber.org/multierr" "go.mau.fi/mautrix-telegram/pkg/gotd/bin" "go.mau.fi/mautrix-telegram/pkg/gotd/tdjson" "go.mau.fi/mautrix-telegram/pkg/gotd/tdp" "go.mau.fi/mautrix-telegram/pkg/gotd/tgerr" ) // 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{} ) // PingRequest represents TL type `ping#ce73048f`. // // See https://localhost:80/doc/constructor/ping for reference. type PingRequest struct { // ID field of PingRequest. ID int32 } // PingRequestTypeID is TL type id of PingRequest. const PingRequestTypeID = 0xce73048f // Ensuring interfaces in compile-time for PingRequest. var ( _ bin.Encoder = &PingRequest{} _ bin.Decoder = &PingRequest{} _ bin.BareEncoder = &PingRequest{} _ bin.BareDecoder = &PingRequest{} ) func (p *PingRequest) Zero() bool { if p == nil { return true } if !(p.ID == 0) { return false } return true } // String implements fmt.Stringer. func (p *PingRequest) String() string { if p == nil { return "PingRequest(nil)" } type Alias PingRequest return fmt.Sprintf("PingRequest%+v", Alias(*p)) } // TypeID returns type id in TL schema. // // See https://core.telegram.org/mtproto/TL-tl#remarks. func (*PingRequest) TypeID() uint32 { return PingRequestTypeID } // TypeName returns name of type in TL schema. func (*PingRequest) TypeName() string { return "ping" } // TypeInfo returns info about TL type. func (p *PingRequest) TypeInfo() tdp.Type { typ := tdp.Type{ Name: "ping", ID: PingRequestTypeID, } if p == nil { typ.Null = true return typ } typ.Fields = []tdp.Field{ { Name: "ID", SchemaName: "id", }, } return typ } // Encode implements bin.Encoder. func (p *PingRequest) Encode(b *bin.Buffer) error { if p == nil { return fmt.Errorf("can't encode ping#ce73048f as nil") } b.PutID(PingRequestTypeID) return p.EncodeBare(b) } // EncodeBare implements bin.BareEncoder. func (p *PingRequest) EncodeBare(b *bin.Buffer) error { if p == nil { return fmt.Errorf("can't encode ping#ce73048f as nil") } b.PutInt32(p.ID) return nil } // Decode implements bin.Decoder. func (p *PingRequest) Decode(b *bin.Buffer) error { if p == nil { return fmt.Errorf("can't decode ping#ce73048f to nil") } if err := b.ConsumeID(PingRequestTypeID); err != nil { return fmt.Errorf("unable to decode ping#ce73048f: %w", err) } return p.DecodeBare(b) } // DecodeBare implements bin.BareDecoder. func (p *PingRequest) DecodeBare(b *bin.Buffer) error { if p == nil { return fmt.Errorf("can't decode ping#ce73048f to nil") } { value, err := b.Int32() if err != nil { return fmt.Errorf("unable to decode ping#ce73048f: field id: %w", err) } p.ID = value } return nil } // GetID returns value of ID field. func (p *PingRequest) GetID() (value int32) { if p == nil { return } return p.ID } // Ping invokes method ping#ce73048f returning error if any. // // See https://localhost:80/doc/constructor/ping for reference. func (c *Client) Ping(ctx context.Context, id int32) error { var ok Ok request := &PingRequest{ ID: id, } if err := c.rpc.Invoke(ctx, request, &ok); err != nil { return err } return nil }