// 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 DeleteCustomHubGlobals 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 (d DeleteCustomHubGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(d, "", false) } func (d *DeleteCustomHubGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &d, "", false, nil); err != nil { return err } return nil } func (d *DeleteCustomHubGlobals) GetAccepts() *components.Accepts { if d == nil { return nil } return d.Accepts } func (d *DeleteCustomHubGlobals) GetClientIdentifier() *string { if d == nil { return nil } return d.ClientIdentifier } func (d *DeleteCustomHubGlobals) GetProduct() *string { if d == nil { return nil } return d.Product } func (d *DeleteCustomHubGlobals) GetVersion() *string { if d == nil { return nil } return d.Version } func (d *DeleteCustomHubGlobals) GetPlatform() *string { if d == nil { return nil } return d.Platform } func (d *DeleteCustomHubGlobals) GetPlatformVersion() *string { if d == nil { return nil } return d.PlatformVersion } func (d *DeleteCustomHubGlobals) GetDevice() *string { if d == nil { return nil } return d.Device } func (d *DeleteCustomHubGlobals) GetModel() *string { if d == nil { return nil } return d.Model } func (d *DeleteCustomHubGlobals) GetDeviceVendor() *string { if d == nil { return nil } return d.DeviceVendor } func (d *DeleteCustomHubGlobals) GetDeviceName() *string { if d == nil { return nil } return d.DeviceName } func (d *DeleteCustomHubGlobals) GetMarketplace() *string { if d == nil { return nil } return d.Marketplace } type DeleteCustomHubRequest 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 section ID for the hubs to change SectionID int64 `pathParam:"style=simple,explode=false,name=sectionId"` // The identifier of the hub to change Identifier string `pathParam:"style=simple,explode=false,name=identifier"` } func (d DeleteCustomHubRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(d, "", false) } func (d *DeleteCustomHubRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &d, "", false, []string{"sectionId", "identifier"}); err != nil { return err } return nil } func (d *DeleteCustomHubRequest) GetAccepts() *components.Accepts { if d == nil { return nil } return d.Accepts } func (d *DeleteCustomHubRequest) GetClientIdentifier() *string { if d == nil { return nil } return d.ClientIdentifier } func (d *DeleteCustomHubRequest) GetProduct() *string { if d == nil { return nil } return d.Product } func (d *DeleteCustomHubRequest) GetVersion() *string { if d == nil { return nil } return d.Version } func (d *DeleteCustomHubRequest) GetPlatform() *string { if d == nil { return nil } return d.Platform } func (d *DeleteCustomHubRequest) GetPlatformVersion() *string { if d == nil { return nil } return d.PlatformVersion } func (d *DeleteCustomHubRequest) GetDevice() *string { if d == nil { return nil } return d.Device } func (d *DeleteCustomHubRequest) GetModel() *string { if d == nil { return nil } return d.Model } func (d *DeleteCustomHubRequest) GetDeviceVendor() *string { if d == nil { return nil } return d.DeviceVendor } func (d *DeleteCustomHubRequest) GetDeviceName() *string { if d == nil { return nil } return d.DeviceName } func (d *DeleteCustomHubRequest) GetMarketplace() *string { if d == nil { return nil } return d.Marketplace } func (d *DeleteCustomHubRequest) GetSectionID() int64 { if d == nil { return 0 } return d.SectionID } func (d *DeleteCustomHubRequest) GetIdentifier() string { if d == nil { return "" } return d.Identifier } type DeleteCustomHubResponse 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 (d *DeleteCustomHubResponse) GetContentType() string { if d == nil { return "" } return d.ContentType } func (d *DeleteCustomHubResponse) GetStatusCode() int { if d == nil { return 0 } return d.StatusCode } func (d *DeleteCustomHubResponse) GetRawResponse() *http.Response { if d == nil { return nil } return d.RawResponse }