// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type User struct {
	AuthKeyID *string `json:"auth_key_id,omitempty"`
	Steamid   *string `json:"steamid,omitempty"`
}

func (o *User) GetAuthKeyID() *string {
	if o == nil {
		return nil
	}
	return o.AuthKeyID
}

func (o *User) GetSteamid() *string {
	if o == nil {
		return nil
	}
	return o.Steamid
}
