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

package components

type Contact struct {
	Email  *string `json:"email,omitempty"`
	Handle *string `json:"handle,omitempty"`
	Name   *string `json:"name,omitempty"`
}

func (o *Contact) GetEmail() *string {
	if o == nil {
		return nil
	}
	return o.Email
}

func (o *Contact) GetHandle() *string {
	if o == nil {
		return nil
	}
	return o.Handle
}

func (o *Contact) GetName() *string {
	if o == nil {
		return nil
	}
	return o.Name
}
