For example: Go: ```go // User holds information for a user type User struct { Name string `json:"name"` // The name of the user ``` Typescript ```ts // User holds information for a user interface User { name: string; // The name of the user } ```