mirror of
https://github.com/LukeHagar/plexgo.git
synced 2025-12-06 04:20:46 +00:00
48 lines
976 B
Go
48 lines
976 B
Go
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
package operations
|
|
|
|
import (
|
|
"github.com/LukeHagar/plexgo/models/components"
|
|
"net/http"
|
|
)
|
|
|
|
type StopAllRefreshesResponse 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
|
|
LibrarySections *components.LibrarySections
|
|
}
|
|
|
|
func (s *StopAllRefreshesResponse) GetContentType() string {
|
|
if s == nil {
|
|
return ""
|
|
}
|
|
return s.ContentType
|
|
}
|
|
|
|
func (s *StopAllRefreshesResponse) GetStatusCode() int {
|
|
if s == nil {
|
|
return 0
|
|
}
|
|
return s.StatusCode
|
|
}
|
|
|
|
func (s *StopAllRefreshesResponse) GetRawResponse() *http.Response {
|
|
if s == nil {
|
|
return nil
|
|
}
|
|
return s.RawResponse
|
|
}
|
|
|
|
func (s *StopAllRefreshesResponse) GetLibrarySections() *components.LibrarySections {
|
|
if s == nil {
|
|
return nil
|
|
}
|
|
return s.LibrarySections
|
|
}
|