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

package components

type PptpResponseInfo struct {
	Code    *int    `json:"code,omitempty"`
	Meaning *string `json:"meaning,omitempty"`
}

func (o *PptpResponseInfo) GetCode() *int {
	if o == nil {
		return nil
	}
	return o.Code
}

func (o *PptpResponseInfo) GetMeaning() *string {
	if o == nil {
		return nil
	}
	return o.Meaning
}
