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

package components

type IpmiCommandPayloadPackedNetFnLogicalUnitNumber struct {
	// The human-readable name of the LUN
	Name *string `json:"name,omitempty"`
	// The value of the LUN (3 bits)
	Raw *int `json:"raw,omitempty"`
}

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

func (o *IpmiCommandPayloadPackedNetFnLogicalUnitNumber) GetRaw() *int {
	if o == nil {
		return nil
	}
	return o.Raw
}
