Skip to content

Commit

Permalink
fix(stacks/vcs): update StackUpdateOptions struct with json annotated…
Browse files Browse the repository at this point in the history
… vcs options (#1039)
  • Loading branch information
mjyocca authored Jan 15, 2025
1 parent 9254825 commit 7f908eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ type StackCreateOptions struct {

// StackUpdateOptions represents the options for updating a stack.
type StackUpdateOptions struct {
Name *string `jsonapi:"attr,name,omitempty"`
Description *string `jsonapi:"attr,description,omitempty"`
VCSRepo *StackVCSRepo `jsonapi:"attr,vcs-repo,omitempty"`
Name *string `jsonapi:"attr,name,omitempty"`
Description *string `jsonapi:"attr,description,omitempty"`
VCSRepo *StackVCSRepoOptions `jsonapi:"attr,vcs-repo,omitempty"`
}

// WaitForStatusResult is the data structure that is sent over the channel
Expand Down

0 comments on commit 7f908eb

Please sign in to comment.