// 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 StartBifGenerationGlobals 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 (s StartBifGenerationGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(s, "", false) } func (s *StartBifGenerationGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &s, "", false, nil); err != nil { return err } return nil } func (s *StartBifGenerationGlobals) GetAccepts() *components.Accepts { if s == nil { return nil } return s.Accepts } func (s *StartBifGenerationGlobals) GetClientIdentifier() *string { if s == nil { return nil } return s.ClientIdentifier } func (s *StartBifGenerationGlobals) GetProduct() *string { if s == nil { return nil } return s.Product } func (s *StartBifGenerationGlobals) GetVersion() *string { if s == nil { return nil } return s.Version } func (s *StartBifGenerationGlobals) GetPlatform() *string { if s == nil { return nil } return s.Platform } func (s *StartBifGenerationGlobals) GetPlatformVersion() *string { if s == nil { return nil } return s.PlatformVersion } func (s *StartBifGenerationGlobals) GetDevice() *string { if s == nil { return nil } return s.Device } func (s *StartBifGenerationGlobals) GetModel() *string { if s == nil { return nil } return s.Model } func (s *StartBifGenerationGlobals) GetDeviceVendor() *string { if s == nil { return nil } return s.DeviceVendor } func (s *StartBifGenerationGlobals) GetDeviceName() *string { if s == nil { return nil } return s.DeviceName } func (s *StartBifGenerationGlobals) GetMarketplace() *string { if s == nil { return nil } return s.Marketplace } type StartBifGenerationRequest 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"` Ids string `pathParam:"style=simple,explode=false,name=ids"` Force *components.BoolInt `default:"0" queryParam:"style=form,explode=true,name=force"` } func (s StartBifGenerationRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(s, "", false) } func (s *StartBifGenerationRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &s, "", false, []string{"ids"}); err != nil { return err } return nil } func (s *StartBifGenerationRequest) GetAccepts() *components.Accepts { if s == nil { return nil } return s.Accepts } func (s *StartBifGenerationRequest) GetClientIdentifier() *string { if s == nil { return nil } return s.ClientIdentifier } func (s *StartBifGenerationRequest) GetProduct() *string { if s == nil { return nil } return s.Product } func (s *StartBifGenerationRequest) GetVersion() *string { if s == nil { return nil } return s.Version } func (s *StartBifGenerationRequest) GetPlatform() *string { if s == nil { return nil } return s.Platform } func (s *StartBifGenerationRequest) GetPlatformVersion() *string { if s == nil { return nil } return s.PlatformVersion } func (s *StartBifGenerationRequest) GetDevice() *string { if s == nil { return nil } return s.Device } func (s *StartBifGenerationRequest) GetModel() *string { if s == nil { return nil } return s.Model } func (s *StartBifGenerationRequest) GetDeviceVendor() *string { if s == nil { return nil } return s.DeviceVendor } func (s *StartBifGenerationRequest) GetDeviceName() *string { if s == nil { return nil } return s.DeviceName } func (s *StartBifGenerationRequest) GetMarketplace() *string { if s == nil { return nil } return s.Marketplace } func (s *StartBifGenerationRequest) GetIds() string { if s == nil { return "" } return s.Ids } func (s *StartBifGenerationRequest) GetForce() *components.BoolInt { if s == nil { return nil } return s.Force } type StartBifGenerationResponse 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 (s *StartBifGenerationResponse) GetContentType() string { if s == nil { return "" } return s.ContentType } func (s *StartBifGenerationResponse) GetStatusCode() int { if s == nil { return 0 } return s.StatusCode } func (s *StartBifGenerationResponse) GetRawResponse() *http.Response { if s == nil { return nil } return s.RawResponse }