Source File
type.go
Belonging Package
github.com/gotd/td/tdp
package tdp
// Field of TL type, non-recursive.
type Field struct {
Name string
SchemaName string
Null bool
}
// Type info for TL type, non-recursive.
type Type struct {
// Name in TL schema.
Name string
// ID is type id.
ID uint32
// Fields of type.
Fields []Field
// Null denotes whether value is null.
Null bool
}
// Object of TL schema that can return type info.
type Object interface {
TypeInfo() Type
}
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. |