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

package components

type Ike struct {
	V1 *IkeV1 `json:"v1,omitempty"`
	V2 *IkeV2 `json:"v2,omitempty"`
}

func (o *Ike) GetV1() *IkeV1 {
	if o == nil {
		return nil
	}
	return o.V1
}

func (o *Ike) GetV2() *IkeV2 {
	if o == nil {
		return nil
	}
	return o.V2
}
