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

package components

type SearchCapabilities struct {
	GeneralStartEvents *bool `json:"general_start_events,omitempty"`
	MetadataSearch     *bool `json:"metadata_search,omitempty"`
}

func (o *SearchCapabilities) GetGeneralStartEvents() *bool {
	if o == nil {
		return nil
	}
	return o.GeneralStartEvents
}

func (o *SearchCapabilities) GetMetadataSearch() *bool {
	if o == nil {
		return nil
	}
	return o.MetadataSearch
}
