Skip to content

Commit

Permalink
Merge branch 'release/1.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
iktakahiro committed Dec 4, 2024
2 parents 27bf0b2 + d647ba7 commit 5c1492d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
go: ['1.22', '1.23']
go: ['1.23']
steps:
- uses: actions/checkout@v4
with:
Expand Down
14 changes: 7 additions & 7 deletions subscriber.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ type SubscriberResponse struct {
}

type Subscriber struct {
Entitlements map[string]Entitlement `json:"entitlements"`
FirstSeen time.Time `json:"first_seen"`
LastSeen time.Time `json:"last_seen"`
ManagementURL null.String `json:"management_url"`
OriginalAppUserID null.String `json:"original_app_user_id"`
Subscriptions map[string]Subscription `json:"subscriptions"`
NonSubscription map[string]NonSubscription `json:"non_subscriptions"`
Entitlements map[string]Entitlement `json:"entitlements"`
FirstSeen time.Time `json:"first_seen"`
LastSeen time.Time `json:"last_seen"`
ManagementURL null.String `json:"management_url"`
OriginalAppUserID null.String `json:"original_app_user_id"`
Subscriptions map[string]Subscription `json:"subscriptions"`
NonSubscription map[string][]NonSubscription `json:"non_subscriptions"`
}

type Entitlement struct {
Expand Down

0 comments on commit 5c1492d

Please sign in to comment.