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

package components

type LpdMessage struct {
	Body   *string `json:"body,omitempty"`
	Status *int    `json:"status,omitempty"`
}

func (o *LpdMessage) GetBody() *string {
	if o == nil {
		return nil
	}
	return o.Body
}

func (o *LpdMessage) GetStatus() *int {
	if o == nil {
		return nil
	}
	return o.Status
}
