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

package components

type CPELifeCycle struct {
	EndOfLife     *bool   `json:"end_of_life,omitempty"`
	EndOfLifeDate *string `json:"end_of_life_date,omitempty"`
	ReleaseDate   *string `json:"release_date,omitempty"`
}

func (o *CPELifeCycle) GetEndOfLife() *bool {
	if o == nil {
		return nil
	}
	return o.EndOfLife
}

func (o *CPELifeCycle) GetEndOfLifeDate() *string {
	if o == nil {
		return nil
	}
	return o.EndOfLifeDate
}

func (o *CPELifeCycle) GetReleaseDate() *string {
	if o == nil {
		return nil
	}
	return o.ReleaseDate
}
