| Name | Type | Description | Notes |
|---|---|---|---|
| Copyrights | Pointer to []string | [optional] | |
| Status | Pointer to string | Indicates the current status of the job | [optional] |
| WaitingTimeInQueue | Pointer to int64 | Waiting time in ms | [optional] |
| ProcessingTime | Pointer to int64 | Processing time in ms. If job is still waiting in queue, processing_time is 0 | [optional] |
| Solution | Pointer to Solution | [optional] |
func NewResponse() *Response
NewResponse instantiates a new Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewResponseWithDefaults() *Response
NewResponseWithDefaults instantiates a new Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *Response) GetCopyrights() []string
GetCopyrights returns the Copyrights field if non-nil, zero value otherwise.
func (o *Response) GetCopyrightsOk() (*[]string, bool)
GetCopyrightsOk returns a tuple with the Copyrights field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Response) SetCopyrights(v []string)
SetCopyrights sets Copyrights field to given value.
func (o *Response) HasCopyrights() bool
HasCopyrights returns a boolean if a field has been set.
func (o *Response) GetStatus() string
GetStatus returns the Status field if non-nil, zero value otherwise.
func (o *Response) GetStatusOk() (*string, bool)
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Response) SetStatus(v string)
SetStatus sets Status field to given value.
func (o *Response) HasStatus() bool
HasStatus returns a boolean if a field has been set.
func (o *Response) GetWaitingTimeInQueue() int64
GetWaitingTimeInQueue returns the WaitingTimeInQueue field if non-nil, zero value otherwise.
func (o *Response) GetWaitingTimeInQueueOk() (*int64, bool)
GetWaitingTimeInQueueOk returns a tuple with the WaitingTimeInQueue field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Response) SetWaitingTimeInQueue(v int64)
SetWaitingTimeInQueue sets WaitingTimeInQueue field to given value.
func (o *Response) HasWaitingTimeInQueue() bool
HasWaitingTimeInQueue returns a boolean if a field has been set.
func (o *Response) GetProcessingTime() int64
GetProcessingTime returns the ProcessingTime field if non-nil, zero value otherwise.
func (o *Response) GetProcessingTimeOk() (*int64, bool)
GetProcessingTimeOk returns a tuple with the ProcessingTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Response) SetProcessingTime(v int64)
SetProcessingTime sets ProcessingTime field to given value.
func (o *Response) HasProcessingTime() bool
HasProcessingTime returns a boolean if a field has been set.
func (o *Response) GetSolution() Solution
GetSolution returns the Solution field if non-nil, zero value otherwise.
func (o *Response) GetSolutionOk() (*Solution, bool)
GetSolutionOk returns a tuple with the Solution field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Response) SetSolution(v Solution)
SetSolution sets Solution field to given value.
func (o *Response) HasSolution() bool
HasSolution returns a boolean if a field has been set.