Skip to content

Commit

Permalink
fix renamed types
Browse files Browse the repository at this point in the history
  • Loading branch information
jessepeterson committed May 15, 2024
1 parent 6f45589 commit 6ff8a36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions godep/beta.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type GetSeedBuildTokenResponse struct {
// OS beta enrollment tokens. These are for later use during ADE
// enrollment of devices to force enrollment into beta software enrollment.
// See https://developer.apple.com/documentation/devicemanagement/get_beta_enrollment_tokens
func (c *Client) OSBetaEnrollmentTokens(ctx context.Context, name string) (*OSBetaEnrollmentTokensResponse, error) {
resp := new(OSBetaEnrollmentTokens)
func (c *Client) OSBetaEnrollmentTokens(ctx context.Context, name string) (*GetSeedBuildTokenResponse, error) {
resp := new(GetSeedBuildTokenResponse)
return resp, c.do(ctx, name, http.MethodGet, "/os-beta-enrollment/tokens", nil, resp)
}

0 comments on commit 6ff8a36

Please sign in to comment.