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  TextWithEntities  struct  { 
	 
	Text  string  
	 
 
 
 
	Entities  []MessageEntityClass  
} 
 
 
const  TextWithEntitiesTypeID  = 0x751f3146  
 
 
var  ( 
	_ bin .Encoder      = &TextWithEntities {} 
	_ bin .Decoder      = &TextWithEntities {} 
	_ bin .BareEncoder  = &TextWithEntities {} 
	_ bin .BareDecoder  = &TextWithEntities {} 
) 
 
func  (t  *TextWithEntities ) Zero  () bool  { 
	if  t  == nil  { 
		return  true  
	} 
	if  !(t .Text  == "" ) { 
		return  false  
	} 
	if  !(t .Entities  == nil ) { 
		return  false  
	} 
 
	return  true  
} 
 
 
func  (t  *TextWithEntities ) String  () string  { 
	if  t  == nil  { 
		return  "TextWithEntities(nil)"  
	} 
	type  Alias  TextWithEntities  
	return  fmt .Sprintf ("TextWithEntities%+v" , Alias (*t )) 
} 
 
 
func  (t  *TextWithEntities ) FillFrom  (from  interface  { 
	GetText () (value  string ) 
	GetEntities () (value  []MessageEntityClass ) 
}) { 
	t .Text  = from .GetText () 
	t .Entities  = from .GetEntities () 
} 
 
 
 
 
func  (*TextWithEntities ) TypeID  () uint32  { 
	return  TextWithEntitiesTypeID  
} 
 
 
func  (*TextWithEntities ) TypeName  () string  { 
	return  "textWithEntities"  
} 
 
 
func  (t  *TextWithEntities ) TypeInfo  () tdp .Type  { 
	typ  := tdp .Type { 
		Name : "textWithEntities" , 
		ID :   TextWithEntitiesTypeID , 
	} 
	if  t  == nil  { 
		typ .Null  = true  
		return  typ  
	} 
	typ .Fields  = []tdp .Field { 
		{ 
			Name :       "Text" , 
			SchemaName : "text" , 
		}, 
		{ 
			Name :       "Entities" , 
			SchemaName : "entities" , 
		}, 
	} 
	return  typ  
} 
 
 
func  (t  *TextWithEntities ) Encode  (b  *bin .Buffer ) error  { 
	if  t  == nil  { 
		return  fmt .Errorf ("can't encode textWithEntities#751f3146 as nil" ) 
	} 
	b .PutID (TextWithEntitiesTypeID ) 
	return  t .EncodeBare (b ) 
} 
 
 
func  (t  *TextWithEntities ) EncodeBare  (b  *bin .Buffer ) error  { 
	if  t  == nil  { 
		return  fmt .Errorf ("can't encode textWithEntities#751f3146 as nil" ) 
	} 
	b .PutString (t .Text ) 
	b .PutVectorHeader (len (t .Entities )) 
	for  idx , v  := range  t .Entities  { 
		if  v  == nil  { 
			return  fmt .Errorf ("unable to encode textWithEntities#751f3146: field entities element with index %d is nil" , idx ) 
		} 
		if  err  := v .Encode (b ); err  != nil  { 
			return  fmt .Errorf ("unable to encode textWithEntities#751f3146: field entities element with index %d: %w" , idx , err ) 
		} 
	} 
	return  nil  
} 
 
 
func  (t  *TextWithEntities ) Decode  (b  *bin .Buffer ) error  { 
	if  t  == nil  { 
		return  fmt .Errorf ("can't decode textWithEntities#751f3146 to nil" ) 
	} 
	if  err  := b .ConsumeID (TextWithEntitiesTypeID ); err  != nil  { 
		return  fmt .Errorf ("unable to decode textWithEntities#751f3146: %w" , err ) 
	} 
	return  t .DecodeBare (b ) 
} 
 
 
func  (t  *TextWithEntities ) DecodeBare  (b  *bin .Buffer ) error  { 
	if  t  == nil  { 
		return  fmt .Errorf ("can't decode textWithEntities#751f3146 to nil" ) 
	} 
	{ 
		value , err  := b .String () 
		if  err  != nil  { 
			return  fmt .Errorf ("unable to decode textWithEntities#751f3146: field text: %w" , err ) 
		} 
		t .Text  = value  
	} 
	{ 
		headerLen , err  := b .VectorHeader () 
		if  err  != nil  { 
			return  fmt .Errorf ("unable to decode textWithEntities#751f3146: field entities: %w" , err ) 
		} 
 
		if  headerLen  > 0  { 
			t .Entities  = make ([]MessageEntityClass , 0 , headerLen %bin .PreallocateLimit ) 
		} 
		for  idx  := 0 ; idx  < headerLen ; idx ++ { 
			value , err  := DecodeMessageEntity (b ) 
			if  err  != nil  { 
				return  fmt .Errorf ("unable to decode textWithEntities#751f3146: field entities: %w" , err ) 
			} 
			t .Entities  = append (t .Entities , value ) 
		} 
	} 
	return  nil  
} 
 
 
func  (t  *TextWithEntities ) GetText  () (value  string ) { 
	if  t  == nil  { 
		return  
	} 
	return  t .Text  
} 
 
 
func  (t  *TextWithEntities ) GetEntities  () (value  []MessageEntityClass ) { 
	if  t  == nil  { 
		return  
	} 
	return  t .Entities  
} 
 
 
func  (t  *TextWithEntities ) MapEntities  () (value  MessageEntityClassArray ) { 
	return  MessageEntityClassArray (t .Entities ) 
} 
  
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 .