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

package components

type CabfOrganizationID struct {
	Country   *string `json:"country,omitempty"`
	Reference *string `json:"reference,omitempty"`
	Scheme    *string `json:"scheme,omitempty"`
	State     *string `json:"state,omitempty"`
}

func (o *CabfOrganizationID) GetCountry() *string {
	if o == nil {
		return nil
	}
	return o.Country
}

func (o *CabfOrganizationID) GetReference() *string {
	if o == nil {
		return nil
	}
	return o.Reference
}

func (o *CabfOrganizationID) GetScheme() *string {
	if o == nil {
		return nil
	}
	return o.Scheme
}

func (o *CabfOrganizationID) GetState() *string {
	if o == nil {
		return nil
	}
	return o.State
}
