// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. package operations import ( "github.com/LukeHagar/plexgo/models/components" "net/http" ) type DiscoverDevicesResponse struct { // HTTP response content type for this operation ContentType string // HTTP response status code for this operation StatusCode int // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK MediaContainerWithDevice *components.MediaContainerWithDevice } func (d *DiscoverDevicesResponse) GetContentType() string { if d == nil { return "" } return d.ContentType } func (d *DiscoverDevicesResponse) GetStatusCode() int { if d == nil { return 0 } return d.StatusCode } func (d *DiscoverDevicesResponse) GetRawResponse() *http.Response { if d == nil { return nil } return d.RawResponse } func (d *DiscoverDevicesResponse) GetMediaContainerWithDevice() *components.MediaContainerWithDevice { if d == nil { return nil } return d.MediaContainerWithDevice }