upstash.go 309 B

12345678910111213141516
  1. package integrations
  2. import "gorm.io/gorm"
  3. // UpstashIntegration is an integration for the Upstash service
  4. type UpstashIntegration struct {
  5. gorm.Model
  6. ProjectID uint `json:"project_id"`
  7. SharedOAuthModel
  8. DeveloperApiKey []byte `json:"developer_api_key"`
  9. UpstashEmail string `json:"upstash_email"`
  10. }