package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
var (
_ = bin .Buffer {}
_ = context .Background ()
_ = fmt .Stringer (nil )
_ = strings .Builder {}
_ = errors .Is
_ = multierr .AppendInto
_ = sort .Ints
_ = tdp .Format
_ = tgerr .Error {}
_ = tdjson .Encoder {}
)
type PhoneGroupCallStreamRtmpURL struct {
URL string
Key string
}
const PhoneGroupCallStreamRtmpURLTypeID = 0x2dbf3432
var (
_ bin .Encoder = &PhoneGroupCallStreamRtmpURL {}
_ bin .Decoder = &PhoneGroupCallStreamRtmpURL {}
_ bin .BareEncoder = &PhoneGroupCallStreamRtmpURL {}
_ bin .BareDecoder = &PhoneGroupCallStreamRtmpURL {}
)
func (g *PhoneGroupCallStreamRtmpURL ) Zero () bool {
if g == nil {
return true
}
if !(g .URL == "" ) {
return false
}
if !(g .Key == "" ) {
return false
}
return true
}
func (g *PhoneGroupCallStreamRtmpURL ) String () string {
if g == nil {
return "PhoneGroupCallStreamRtmpURL(nil)"
}
type Alias PhoneGroupCallStreamRtmpURL
return fmt .Sprintf ("PhoneGroupCallStreamRtmpURL%+v" , Alias (*g ))
}
func (g *PhoneGroupCallStreamRtmpURL ) FillFrom (from interface {
GetURL () (value string )
GetKey () (value string )
}) {
g .URL = from .GetURL ()
g .Key = from .GetKey ()
}
func (*PhoneGroupCallStreamRtmpURL ) TypeID () uint32 {
return PhoneGroupCallStreamRtmpURLTypeID
}
func (*PhoneGroupCallStreamRtmpURL ) TypeName () string {
return "phone.groupCallStreamRtmpUrl"
}
func (g *PhoneGroupCallStreamRtmpURL ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "phone.groupCallStreamRtmpUrl" ,
ID : PhoneGroupCallStreamRtmpURLTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "URL" ,
SchemaName : "url" ,
},
{
Name : "Key" ,
SchemaName : "key" ,
},
}
return typ
}
func (g *PhoneGroupCallStreamRtmpURL ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode phone.groupCallStreamRtmpUrl#2dbf3432 as nil" )
}
b .PutID (PhoneGroupCallStreamRtmpURLTypeID )
return g .EncodeBare (b )
}
func (g *PhoneGroupCallStreamRtmpURL ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode phone.groupCallStreamRtmpUrl#2dbf3432 as nil" )
}
b .PutString (g .URL )
b .PutString (g .Key )
return nil
}
func (g *PhoneGroupCallStreamRtmpURL ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode phone.groupCallStreamRtmpUrl#2dbf3432 to nil" )
}
if err := b .ConsumeID (PhoneGroupCallStreamRtmpURLTypeID ); err != nil {
return fmt .Errorf ("unable to decode phone.groupCallStreamRtmpUrl#2dbf3432: %w" , err )
}
return g .DecodeBare (b )
}
func (g *PhoneGroupCallStreamRtmpURL ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode phone.groupCallStreamRtmpUrl#2dbf3432 to nil" )
}
{
value , err := b .String ()
if err != nil {
return fmt .Errorf ("unable to decode phone.groupCallStreamRtmpUrl#2dbf3432: field url: %w" , err )
}
g .URL = value
}
{
value , err := b .String ()
if err != nil {
return fmt .Errorf ("unable to decode phone.groupCallStreamRtmpUrl#2dbf3432: field key: %w" , err )
}
g .Key = value
}
return nil
}
func (g *PhoneGroupCallStreamRtmpURL ) GetURL () (value string ) {
if g == nil {
return
}
return g .URL
}
func (g *PhoneGroupCallStreamRtmpURL ) GetKey () (value string ) {
if g == nil {
return
}
return g .Key
}
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 .