Skip to content

Commit

Permalink
Fix struct tag (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
chandlerroth committed Jun 19, 2024
1 parent a62979e commit d3834af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/usermanagement/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -512,9 +512,9 @@ type ListInvitationsResponse struct {
}

type ListInvitationsOpts struct {
OrganizationID string `json:"organization_id,omitempty"`
OrganizationID string `url:"organization_id,omitempty"`

Email string `json:"email,omitempty"`
Email string `url:"email,omitempty"`

// Maximum number of records to return.
Limit int `url:"limit"`
Expand Down

0 comments on commit d3834af

Please sign in to comment.