diff --git a/resource/buildpack.go b/resource/buildpack.go index 2d8b212..3348a94 100644 --- a/resource/buildpack.go +++ b/resource/buildpack.go @@ -4,7 +4,7 @@ type Buildpack struct { Name string `json:"name"` // The name of the buildpack; to be used by app buildpack field (only alphanumeric characters) State string `json:"state"` // The state of the buildpack Valid value is: AWAITING_UPLOAD Filename *string `json:"filename"` // The filename of the buildpack, if any - Stack string `json:"stack"` // The name of the stack that the buildpack will use + Stack *string `json:"stack"` // The name of the stack that the buildpack will use Position int `json:"position"` // The order in which the buildpacks are checked during buildpack auto-detection Enabled bool `json:"enabled"` // Whether the buildpack can be used for staging Locked bool `json:"locked"` // Whether the buildpack is locked to prevent updating the bits