Skip to content

Latest commit

 

History

History
65 lines (34 loc) · 2.25 KB

ApplicationApiHealth.md

File metadata and controls

65 lines (34 loc) · 2.25 KB

ApplicationApiHealth

Properties

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.

Methods

GetSummary

func (o *ApplicationApiHealth) GetSummary() string

GetSummary returns the Summary field if non-nil, zero value otherwise.

GetSummaryOk

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.

HasSummary

func (o *ApplicationApiHealth) HasSummary() bool

HasSummary returns a boolean if a field has been set.

SetSummary

func (o *ApplicationApiHealth) SetSummary(v string)

SetSummary gets a reference to the given string and assigns it to the Summary field.

GetLastUsed

func (o *ApplicationApiHealth) GetLastUsed() time.Time

GetLastUsed returns the LastUsed field if non-nil, zero value otherwise.

GetLastUsedOk

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.

HasLastUsed

func (o *ApplicationApiHealth) HasLastUsed() bool

HasLastUsed returns a boolean if a field has been set.

SetLastUsed

func (o *ApplicationApiHealth) SetLastUsed(v time.Time)

SetLastUsed gets a reference to the given time.Time and assigns it to the LastUsed field.

[Back to Model list] [Back to API list] [Back to README]