We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fab489 commit 50eb567Copy full SHA for 50eb567
sentry/organization_repositories.go
@@ -2,6 +2,7 @@ package sentry
2
3
import (
4
"context"
5
+ "encoding/json"
6
"fmt"
7
"time"
8
)
@@ -22,7 +23,8 @@ type OrganizationRepository struct {
22
23
Status string `json:"status"`
24
DateCreated time.Time `json:"dateCreated"`
25
IntegrationId string `json:"integrationId"`
- ExternalSlug string `json:"externalSlug"`
26
+ ExternalSlug json.RawMessage `json:"externalSlug"`
27
+ ExternalId string `json:"externalId"`
28
}
29
30
// OrganizationRepositoriesService provides methods for accessing Sentry organization repositories API endpoints.
0 commit comments