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

package components

type PcAnywhereStatus struct {
	// Workstation is In Use if true, Available if false
	InUse *bool `json:"in_use,omitempty"`
	// Full 'ST' query response
	Raw *string `json:"raw,omitempty"`
}

func (o *PcAnywhereStatus) GetInUse() *bool {
	if o == nil {
		return nil
	}
	return o.InUse
}

func (o *PcAnywhereStatus) GetRaw() *string {
	if o == nil {
		return nil
	}
	return o.Raw
}
