Files
plexgo/models/operations/logmultiline.go

38 lines
713 B
Go

// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
package operations
import (
"net/http"
)
type LogMultiLineResponse 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
}
func (l *LogMultiLineResponse) GetContentType() string {
if l == nil {
return ""
}
return l.ContentType
}
func (l *LogMultiLineResponse) GetStatusCode() int {
if l == nil {
return 0
}
return l.StatusCode
}
func (l *LogMultiLineResponse) GetRawResponse() *http.Response {
if l == nil {
return nil
}
return l.RawResponse
}