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

package components

type CiscoIpslaMeasureResponse struct {
	Flags       *int    `json:"flags,omitempty"`
	Payload     *string `json:"payload,omitempty"`
	ReceiveSeq  *int    `json:"receive_seq,omitempty"`
	ReceiveTime *int64  `json:"receive_time,omitempty"`
	SendSeq     *int    `json:"send_seq,omitempty"`
	SendTime    *int64  `json:"send_time,omitempty"`
	Type        *int    `json:"type,omitempty"`
}

func (o *CiscoIpslaMeasureResponse) GetFlags() *int {
	if o == nil {
		return nil
	}
	return o.Flags
}

func (o *CiscoIpslaMeasureResponse) GetPayload() *string {
	if o == nil {
		return nil
	}
	return o.Payload
}

func (o *CiscoIpslaMeasureResponse) GetReceiveSeq() *int {
	if o == nil {
		return nil
	}
	return o.ReceiveSeq
}

func (o *CiscoIpslaMeasureResponse) GetReceiveTime() *int64 {
	if o == nil {
		return nil
	}
	return o.ReceiveTime
}

func (o *CiscoIpslaMeasureResponse) GetSendSeq() *int {
	if o == nil {
		return nil
	}
	return o.SendSeq
}

func (o *CiscoIpslaMeasureResponse) GetSendTime() *int64 {
	if o == nil {
		return nil
	}
	return o.SendTime
}

func (o *CiscoIpslaMeasureResponse) GetType() *int {
	if o == nil {
		return nil
	}
	return o.Type
}
