Name | Type | Description | Notes |
---|---|---|---|
Summary | Pointer to string | One-word summary of the health of the API connection of an application. Possible values are: - `OK`: The Application has received only successful API requests in the last 5 minutes. - `WARNING`: The Application received at least one failed request in the last 50 minutes. - `ERROR`: More than 50% of received requests failed. - `CRITICAL`: All received requests failed. - `NONE`: During the last 5 minutes, the Application hasn't recorded any integration API requests. | |
LastUsed | Pointer to time.Time | time of last request relevant to the API health test. |
func (o *ApplicationApiHealth) GetSummary() string
GetSummary returns the Summary field if non-nil, zero value otherwise.
func (o *ApplicationApiHealth) GetSummaryOk() (string, bool)
GetSummaryOk returns a tuple with the Summary field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApplicationApiHealth) HasSummary() bool
HasSummary returns a boolean if a field has been set.
func (o *ApplicationApiHealth) SetSummary(v string)
SetSummary gets a reference to the given string and assigns it to the Summary field.
func (o *ApplicationApiHealth) GetLastUsed() time.Time
GetLastUsed returns the LastUsed field if non-nil, zero value otherwise.
func (o *ApplicationApiHealth) GetLastUsedOk() (time.Time, bool)
GetLastUsedOk returns a tuple with the LastUsed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApplicationApiHealth) HasLastUsed() bool
HasLastUsed returns a boolean if a field has been set.
func (o *ApplicationApiHealth) SetLastUsed(v time.Time)
SetLastUsed gets a reference to the given time.Time and assigns it to the LastUsed field.