Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#1835)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Apr 23, 2024
1 parent 6d9f81b commit 59ac6e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zones/activationcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ type ActivationCheckTriggerParams struct {
}

type ActivationCheckTriggerResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result ActivationCheckTriggerResponse `json:"result,required"`
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
// Whether the API call was successful
Success ActivationCheckTriggerResponseEnvelopeSuccess `json:"success,required"`
Result ActivationCheckTriggerResponse `json:"result"`
JSON activationCheckTriggerResponseEnvelopeJSON `json:"-"`
}

Expand All @@ -87,8 +87,8 @@ type ActivationCheckTriggerResponseEnvelope struct {
type activationCheckTriggerResponseEnvelopeJSON struct {
Errors apijson.Field
Messages apijson.Field
Result apijson.Field
Success apijson.Field
Result apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
Expand Down

0 comments on commit 59ac6e6

Please sign in to comment.