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

package components

type EipInterface struct {
	Index *int    `json:"index,omitempty"`
	Name  *string `json:"name,omitempty"`
}

func (o *EipInterface) GetIndex() *int {
	if o == nil {
		return nil
	}
	return o.Index
}

func (o *EipInterface) GetName() *string {
	if o == nil {
		return nil
	}
	return o.Name
}
