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

package components

type Validation struct {
	Apple     *RootStore `json:"apple,omitempty"`
	Chrome    *RootStore `json:"chrome,omitempty"`
	Microsoft *RootStore `json:"microsoft,omitempty"`
	Nss       *RootStore `json:"nss,omitempty"`
}

func (o *Validation) GetApple() *RootStore {
	if o == nil {
		return nil
	}
	return o.Apple
}

func (o *Validation) GetChrome() *RootStore {
	if o == nil {
		return nil
	}
	return o.Chrome
}

func (o *Validation) GetMicrosoft() *RootStore {
	if o == nil {
		return nil
	}
	return o.Microsoft
}

func (o *Validation) GetNss() *RootStore {
	if o == nil {
		return nil
	}
	return o.Nss
}
