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

package components

type ExportList struct {
	Directory *string  `json:"directory,omitempty"`
	Groups    []string `json:"groups,omitempty"`
}

func (o *ExportList) GetDirectory() *string {
	if o == nil {
		return nil
	}
	return o.Directory
}

func (o *ExportList) GetGroups() []string {
	if o == nil {
		return nil
	}
	return o.Groups
}
