type github.com/gotd/td/tg.AuthSentCode

42 uses

	github.com/gotd/td/tg (current package)
		tl_auth_sent_code_gen.go#L38: type AuthSentCode struct {
		tl_auth_sent_code_gen.go#L69: func (s AuthSentCode) construct() AuthSentCodeClass { return &s }
		tl_auth_sent_code_gen.go#L73: 	_ bin.Encoder     = &AuthSentCode{}
		tl_auth_sent_code_gen.go#L74: 	_ bin.Decoder     = &AuthSentCode{}
		tl_auth_sent_code_gen.go#L75: 	_ bin.BareEncoder = &AuthSentCode{}
		tl_auth_sent_code_gen.go#L76: 	_ bin.BareDecoder = &AuthSentCode{}
		tl_auth_sent_code_gen.go#L78: 	_ AuthSentCodeClass = &AuthSentCode{}
		tl_auth_sent_code_gen.go#L81: func (s *AuthSentCode) Zero() bool {
		tl_auth_sent_code_gen.go#L105: func (s *AuthSentCode) String() string {
		tl_auth_sent_code_gen.go#L109: 	type Alias AuthSentCode
		tl_auth_sent_code_gen.go#L114: func (s *AuthSentCode) FillFrom(from interface {
		tl_auth_sent_code_gen.go#L135: func (*AuthSentCode) TypeID() uint32 {
		tl_auth_sent_code_gen.go#L140: func (*AuthSentCode) TypeName() string {
		tl_auth_sent_code_gen.go#L145: func (s *AuthSentCode) TypeInfo() tdp.Type {
		tl_auth_sent_code_gen.go#L178: func (s *AuthSentCode) SetFlags() {
		tl_auth_sent_code_gen.go#L188: func (s *AuthSentCode) Encode(b *bin.Buffer) error {
		tl_auth_sent_code_gen.go#L197: func (s *AuthSentCode) EncodeBare(b *bin.Buffer) error {
		tl_auth_sent_code_gen.go#L227: func (s *AuthSentCode) Decode(b *bin.Buffer) error {
		tl_auth_sent_code_gen.go#L238: func (s *AuthSentCode) DecodeBare(b *bin.Buffer) error {
		tl_auth_sent_code_gen.go#L279: func (s *AuthSentCode) GetType() (value AuthSentCodeTypeClass) {
		tl_auth_sent_code_gen.go#L287: func (s *AuthSentCode) GetPhoneCodeHash() (value string) {
		tl_auth_sent_code_gen.go#L295: func (s *AuthSentCode) SetNextType(value AuthCodeTypeClass) {
		tl_auth_sent_code_gen.go#L302: func (s *AuthSentCode) GetNextType() (value AuthCodeTypeClass, ok bool) {
		tl_auth_sent_code_gen.go#L313: func (s *AuthSentCode) SetTimeout(value int) {
		tl_auth_sent_code_gen.go#L320: func (s *AuthSentCode) GetTimeout() (value int, ok bool) {
		tl_auth_sent_code_gen.go#L519: 		v := AuthSentCode{}
		tl_auth_sent_code_slices_gen.go#L122: 		value, ok := elem.(*AuthSentCode)
		tl_auth_sent_code_slices_gen.go#L146: type AuthSentCodeArray []AuthSentCode
		tl_auth_sent_code_slices_gen.go#L149: func (s AuthSentCodeArray) Sort(less func(a, b AuthSentCode) bool) AuthSentCodeArray {
		tl_auth_sent_code_slices_gen.go#L157: func (s AuthSentCodeArray) SortStable(less func(a, b AuthSentCode) bool) AuthSentCodeArray {
		tl_auth_sent_code_slices_gen.go#L165: func (s AuthSentCodeArray) Retain(keep func(x AuthSentCode) bool) AuthSentCodeArray {
		tl_auth_sent_code_slices_gen.go#L179: func (s AuthSentCodeArray) First() (v AuthSentCode, ok bool) {
		tl_auth_sent_code_slices_gen.go#L187: func (s AuthSentCodeArray) Last() (v AuthSentCode, ok bool) {
		tl_auth_sent_code_slices_gen.go#L195: func (s *AuthSentCodeArray) PopFirst() (v AuthSentCode, ok bool) {
		tl_auth_sent_code_slices_gen.go#L205: 	var zero AuthSentCode
		tl_auth_sent_code_slices_gen.go#L214: func (s *AuthSentCodeArray) Pop() (v AuthSentCode, ok bool) {
		tl_registry_gen.go#L3766: 		AuthSentCodeTypeID:                                       func() bin.Object { return &AuthSentCode{} },

	github.com/gotd/td/telegram/auth
		flow.go#L66: 	case *tg.AuthSentCode:
		flow.go#L125: 	Code(ctx context.Context, sentCode *tg.AuthSentCode) (string, error)
		flow.go#L129: type CodeAuthenticatorFunc func(ctx context.Context, sentCode *tg.AuthSentCode) (string, error)
		flow.go#L132: func (c CodeAuthenticatorFunc) Code(ctx context.Context, sentCode *tg.AuthSentCode) (string, error) {
		flow.go#L253: func (t testAuth) Code(ctx context.Context, sentCode *tg.AuthSentCode) (string, error) {