Skip to content

Commit

Permalink
rebuild go domain with fix for double -> float64.
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdan committed Aug 11, 2021
1 parent 389e818 commit 10e9f82
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkg/fusionauth/Domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -2852,13 +2852,13 @@ type LinkedInIdentityProvider struct {
* @author Brian Pontarelli
*/
type Location struct {
City string `json:"city,omitempty"`
Country string `json:"country,omitempty"`
DisplayString string `json:"displayString,omitempty"`
Latitude double `json:"latitude,omitempty"`
Longitude double `json:"longitude,omitempty"`
Region string `json:"region,omitempty"`
Zipcode string `json:"zipcode,omitempty"`
City string `json:"city,omitempty"`
Country string `json:"country,omitempty"`
DisplayString string `json:"displayString,omitempty"`
Latitude float64 `json:"latitude,omitempty"`
Longitude float64 `json:"longitude,omitempty"`
Region string `json:"region,omitempty"`
Zipcode string `json:"zipcode,omitempty"`
}

/**
Expand Down Expand Up @@ -4450,7 +4450,7 @@ type TenantCaptchaConfiguration struct {
CaptchaMethod CaptchaMethod `json:"captchaMethod,omitempty"`
SecretKey string `json:"secretKey,omitempty"`
SiteKey string `json:"siteKey,omitempty"`
Threshold double `json:"threshold,omitempty"`
Threshold float64 `json:"threshold,omitempty"`
}

/**
Expand Down

0 comments on commit 10e9f82

Please sign in to comment.