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

package components

type IpmiCommandPayloadCommandNumber struct {
	// The human-readable name of the cmd + NetFn
	Name *string `json:"name,omitempty"`
	// The raw value of the cmd value
	Raw *int `json:"raw,omitempty"`
}

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

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