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

package components

type SmbHeaderLog struct {
	Command    *int    `json:"command,omitempty"`
	Credits    *int    `json:"credits,omitempty"`
	Flags      *int    `json:"flags,omitempty"`
	ProtocolID *string `json:"protocol_id,omitempty"`
	Status     *int    `json:"status,omitempty"`
}

func (o *SmbHeaderLog) GetCommand() *int {
	if o == nil {
		return nil
	}
	return o.Command
}

func (o *SmbHeaderLog) GetCredits() *int {
	if o == nil {
		return nil
	}
	return o.Credits
}

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

func (o *SmbHeaderLog) GetProtocolID() *string {
	if o == nil {
		return nil
	}
	return o.ProtocolID
}

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