// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. package components // User - The user playing the content type User struct { // The username Title *string `json:"title,omitempty"` // The id of the user ID *string `json:"id,omitempty"` // Thumb image to display for the user Thumb *string `json:"thumb,omitempty"` } func (u *User) GetTitle() *string { if u == nil { return nil } return u.Title } func (u *User) GetID() *string { if u == nil { return nil } return u.ID } func (u *User) GetThumb() *string { if u == nil { return nil } return u.Thumb }