// 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 UpdateHubVisibilityGlobals 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 (u UpdateHubVisibilityGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(u, "", false) } func (u *UpdateHubVisibilityGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &u, "", false, nil); err != nil { return err } return nil } func (u *UpdateHubVisibilityGlobals) GetAccepts() *components.Accepts { if u == nil { return nil } return u.Accepts } func (u *UpdateHubVisibilityGlobals) GetClientIdentifier() *string { if u == nil { return nil } return u.ClientIdentifier } func (u *UpdateHubVisibilityGlobals) GetProduct() *string { if u == nil { return nil } return u.Product } func (u *UpdateHubVisibilityGlobals) GetVersion() *string { if u == nil { return nil } return u.Version } func (u *UpdateHubVisibilityGlobals) GetPlatform() *string { if u == nil { return nil } return u.Platform } func (u *UpdateHubVisibilityGlobals) GetPlatformVersion() *string { if u == nil { return nil } return u.PlatformVersion } func (u *UpdateHubVisibilityGlobals) GetDevice() *string { if u == nil { return nil } return u.Device } func (u *UpdateHubVisibilityGlobals) GetModel() *string { if u == nil { return nil } return u.Model } func (u *UpdateHubVisibilityGlobals) GetDeviceVendor() *string { if u == nil { return nil } return u.DeviceVendor } func (u *UpdateHubVisibilityGlobals) GetDeviceName() *string { if u == nil { return nil } return u.DeviceName } func (u *UpdateHubVisibilityGlobals) GetMarketplace() *string { if u == nil { return nil } return u.Marketplace } type UpdateHubVisibilityRequest 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"` // Whether this hub should be displayed in recommended PromotedToRecommended *components.BoolInt `default:"0" queryParam:"style=form,explode=true,name=promotedToRecommended"` // Whether this hub should be displayed in admin's home PromotedToOwnHome *components.BoolInt `default:"0" queryParam:"style=form,explode=true,name=promotedToOwnHome"` // Whether this hub should be displayed in shared user's home PromotedToSharedHome *components.BoolInt `default:"0" queryParam:"style=form,explode=true,name=promotedToSharedHome"` } func (u UpdateHubVisibilityRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(u, "", false) } func (u *UpdateHubVisibilityRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &u, "", false, []string{"sectionId", "identifier"}); err != nil { return err } return nil } func (u *UpdateHubVisibilityRequest) GetAccepts() *components.Accepts { if u == nil { return nil } return u.Accepts } func (u *UpdateHubVisibilityRequest) GetClientIdentifier() *string { if u == nil { return nil } return u.ClientIdentifier } func (u *UpdateHubVisibilityRequest) GetProduct() *string { if u == nil { return nil } return u.Product } func (u *UpdateHubVisibilityRequest) GetVersion() *string { if u == nil { return nil } return u.Version } func (u *UpdateHubVisibilityRequest) GetPlatform() *string { if u == nil { return nil } return u.Platform } func (u *UpdateHubVisibilityRequest) GetPlatformVersion() *string { if u == nil { return nil } return u.PlatformVersion } func (u *UpdateHubVisibilityRequest) GetDevice() *string { if u == nil { return nil } return u.Device } func (u *UpdateHubVisibilityRequest) GetModel() *string { if u == nil { return nil } return u.Model } func (u *UpdateHubVisibilityRequest) GetDeviceVendor() *string { if u == nil { return nil } return u.DeviceVendor } func (u *UpdateHubVisibilityRequest) GetDeviceName() *string { if u == nil { return nil } return u.DeviceName } func (u *UpdateHubVisibilityRequest) GetMarketplace() *string { if u == nil { return nil } return u.Marketplace } func (u *UpdateHubVisibilityRequest) GetSectionID() int64 { if u == nil { return 0 } return u.SectionID } func (u *UpdateHubVisibilityRequest) GetIdentifier() string { if u == nil { return "" } return u.Identifier } func (u *UpdateHubVisibilityRequest) GetPromotedToRecommended() *components.BoolInt { if u == nil { return nil } return u.PromotedToRecommended } func (u *UpdateHubVisibilityRequest) GetPromotedToOwnHome() *components.BoolInt { if u == nil { return nil } return u.PromotedToOwnHome } func (u *UpdateHubVisibilityRequest) GetPromotedToSharedHome() *components.BoolInt { if u == nil { return nil } return u.PromotedToSharedHome } type UpdateHubVisibilityResponse 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 (u *UpdateHubVisibilityResponse) GetContentType() string { if u == nil { return "" } return u.ContentType } func (u *UpdateHubVisibilityResponse) GetStatusCode() int { if u == nil { return 0 } return u.StatusCode } func (u *UpdateHubVisibilityResponse) GetRawResponse() *http.Response { if u == nil { return nil } return u.RawResponse }