// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. package operations import ( "github.com/LukeHagar/plexgo/internal/utils" "github.com/LukeHagar/plexgo/models/components" "net/http" ) type AddDeviceGlobals struct { // Indicates the client accepts the indicated media types Accepts *components.Accepts `default:"application/xml" header:"style=simple,explode=false,name=accepts"` // An opaque identifier unique to the client ClientIdentifier *string `header:"style=simple,explode=false,name=X-Plex-Client-Identifier"` // The name of the client product Product *string `header:"style=simple,explode=false,name=X-Plex-Product"` // The version of the client application Version *string `header:"style=simple,explode=false,name=X-Plex-Version"` // The platform of the client Platform *string `header:"style=simple,explode=false,name=X-Plex-Platform"` // The version of the platform PlatformVersion *string `header:"style=simple,explode=false,name=X-Plex-Platform-Version"` // A relatively friendly name for the client device Device *string `header:"style=simple,explode=false,name=X-Plex-Device"` // A potentially less friendly identifier for the device model Model *string `header:"style=simple,explode=false,name=X-Plex-Model"` // The device vendor DeviceVendor *string `header:"style=simple,explode=false,name=X-Plex-Device-Vendor"` // A friendly name for the client DeviceName *string `header:"style=simple,explode=false,name=X-Plex-Device-Name"` // The marketplace on which the client application is distributed Marketplace *string `header:"style=simple,explode=false,name=X-Plex-Marketplace"` } func (a AddDeviceGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(a, "", false) } func (a *AddDeviceGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &a, "", false, nil); err != nil { return err } return nil } func (a *AddDeviceGlobals) GetAccepts() *components.Accepts { if a == nil { return nil } return a.Accepts } func (a *AddDeviceGlobals) GetClientIdentifier() *string { if a == nil { return nil } return a.ClientIdentifier } func (a *AddDeviceGlobals) GetProduct() *string { if a == nil { return nil } return a.Product } func (a *AddDeviceGlobals) GetVersion() *string { if a == nil { return nil } return a.Version } func (a *AddDeviceGlobals) GetPlatform() *string { if a == nil { return nil } return a.Platform } func (a *AddDeviceGlobals) GetPlatformVersion() *string { if a == nil { return nil } return a.PlatformVersion } func (a *AddDeviceGlobals) GetDevice() *string { if a == nil { return nil } return a.Device } func (a *AddDeviceGlobals) GetModel() *string { if a == nil { return nil } return a.Model } func (a *AddDeviceGlobals) GetDeviceVendor() *string { if a == nil { return nil } return a.DeviceVendor } func (a *AddDeviceGlobals) GetDeviceName() *string { if a == nil { return nil } return a.DeviceName } func (a *AddDeviceGlobals) GetMarketplace() *string { if a == nil { return nil } return a.Marketplace } type AddDeviceRequest struct { // Indicates the client accepts the indicated media types Accepts *components.Accepts `default:"application/xml" header:"style=simple,explode=false,name=accepts"` // An opaque identifier unique to the client ClientIdentifier *string `header:"style=simple,explode=false,name=X-Plex-Client-Identifier"` // The name of the client product Product *string `header:"style=simple,explode=false,name=X-Plex-Product"` // The version of the client application Version *string `header:"style=simple,explode=false,name=X-Plex-Version"` // The platform of the client Platform *string `header:"style=simple,explode=false,name=X-Plex-Platform"` // The version of the platform PlatformVersion *string `header:"style=simple,explode=false,name=X-Plex-Platform-Version"` // A relatively friendly name for the client device Device *string `header:"style=simple,explode=false,name=X-Plex-Device"` // A potentially less friendly identifier for the device model Model *string `header:"style=simple,explode=false,name=X-Plex-Model"` // The device vendor DeviceVendor *string `header:"style=simple,explode=false,name=X-Plex-Device-Vendor"` // A friendly name for the client DeviceName *string `header:"style=simple,explode=false,name=X-Plex-Device-Name"` // The marketplace on which the client application is distributed Marketplace *string `header:"style=simple,explode=false,name=X-Plex-Marketplace"` // The URI of the device. URI *string `queryParam:"style=form,explode=true,name=uri"` } func (a AddDeviceRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(a, "", false) } func (a *AddDeviceRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &a, "", false, nil); err != nil { return err } return nil } func (a *AddDeviceRequest) GetAccepts() *components.Accepts { if a == nil { return nil } return a.Accepts } func (a *AddDeviceRequest) GetClientIdentifier() *string { if a == nil { return nil } return a.ClientIdentifier } func (a *AddDeviceRequest) GetProduct() *string { if a == nil { return nil } return a.Product } func (a *AddDeviceRequest) GetVersion() *string { if a == nil { return nil } return a.Version } func (a *AddDeviceRequest) GetPlatform() *string { if a == nil { return nil } return a.Platform } func (a *AddDeviceRequest) GetPlatformVersion() *string { if a == nil { return nil } return a.PlatformVersion } func (a *AddDeviceRequest) GetDevice() *string { if a == nil { return nil } return a.Device } func (a *AddDeviceRequest) GetModel() *string { if a == nil { return nil } return a.Model } func (a *AddDeviceRequest) GetDeviceVendor() *string { if a == nil { return nil } return a.DeviceVendor } func (a *AddDeviceRequest) GetDeviceName() *string { if a == nil { return nil } return a.DeviceName } func (a *AddDeviceRequest) GetMarketplace() *string { if a == nil { return nil } return a.Marketplace } func (a *AddDeviceRequest) GetURI() *string { if a == nil { return nil } return a.URI } type AddDeviceResponse 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 (a *AddDeviceResponse) GetContentType() string { if a == nil { return "" } return a.ContentType } func (a *AddDeviceResponse) GetStatusCode() int { if a == nil { return 0 } return a.StatusCode } func (a *AddDeviceResponse) GetRawResponse() *http.Response { if a == nil { return nil } return a.RawResponse } func (a *AddDeviceResponse) GetMediaContainerWithDevice() *components.MediaContainerWithDevice { if a == nil { return nil } return a.MediaContainerWithDevice }