PageTimings Model
PageTimings Model documentation for Go SDK
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| QueueWaitMs | int64 | Time spent waiting in the render queue (ms) | |
| RenderMs | int64 | Time spent rendering the page image (ms) | |
| OcrMs | int64 | Time spent running OCR (ms) | |
| TotalMs | int64 | Total page processing time (ms) |
Methods
NewPageTimings
func NewPageTimings(queueWaitMs int64, renderMs int64, ocrMs int64, totalMs int64, ) *PageTimings
NewPageTimings instantiates a new PageTimings 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
NewPageTimingsWithDefaults
func NewPageTimingsWithDefaults() *PageTimings
NewPageTimingsWithDefaults instantiates a new PageTimings 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
GetQueueWaitMs
func (o *PageTimings) GetQueueWaitMs() int64
GetQueueWaitMs returns the QueueWaitMs field if non-nil, zero value otherwise.
GetQueueWaitMsOk
func (o *PageTimings) GetQueueWaitMsOk() (*int64, bool)
GetQueueWaitMsOk returns a tuple with the QueueWaitMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetQueueWaitMs
func (o *PageTimings) SetQueueWaitMs(v int64)
SetQueueWaitMs sets QueueWaitMs field to given value.
GetRenderMs
func (o *PageTimings) GetRenderMs() int64
GetRenderMs returns the RenderMs field if non-nil, zero value otherwise.
GetRenderMsOk
func (o *PageTimings) GetRenderMsOk() (*int64, bool)
GetRenderMsOk returns a tuple with the RenderMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetRenderMs
func (o *PageTimings) SetRenderMs(v int64)
SetRenderMs sets RenderMs field to given value.
GetOcrMs
func (o *PageTimings) GetOcrMs() int64
GetOcrMs returns the OcrMs field if non-nil, zero value otherwise.
GetOcrMsOk
func (o *PageTimings) GetOcrMsOk() (*int64, bool)
GetOcrMsOk returns a tuple with the OcrMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetOcrMs
func (o *PageTimings) SetOcrMs(v int64)
SetOcrMs sets OcrMs field to given value.
GetTotalMs
func (o *PageTimings) GetTotalMs() int64
GetTotalMs returns the TotalMs field if non-nil, zero value otherwise.
GetTotalMsOk
func (o *PageTimings) GetTotalMsOk() (*int64, bool)
GetTotalMsOk returns a tuple with the TotalMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetTotalMs
func (o *PageTimings) SetTotalMs(v int64)
SetTotalMs sets TotalMs field to given value.