Skip to content

Commit

Permalink
fix(cdm): fix type of input value (#693)
Browse files Browse the repository at this point in the history
  • Loading branch information
saf3dfsa authored Oct 18, 2024
1 parent 010eac1 commit a14ade6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openstack/cdm/v1/link/requests.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ type Configs struct {
}

type Input struct {
Name string `json:"name,omitempty"`
Value string `json:"value,omitempty"`
Type string `json:"type,omitempty"`
Name string `json:"name,omitempty"`
Value interface{} `json:"value,omitempty"`
Type string `json:"type,omitempty"`
}

var RequestOpts = golangsdk.RequestOpts{
Expand Down

0 comments on commit a14ade6

Please sign in to comment.