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

package components

type PcAnywhere struct {
	// Workstation Name, with padding bytes removed
	Name *string `json:"name,omitempty"`
	// Full 'NR' query response
	Nr     *string           `json:"nr,omitempty"`
	Status *PcAnywhereStatus `json:"status,omitempty"`
}

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

func (o *PcAnywhere) GetNr() *string {
	if o == nil {
		return nil
	}
	return o.Nr
}

func (o *PcAnywhere) GetStatus() *PcAnywhereStatus {
	if o == nil {
		return nil
	}
	return o.Status
}
