github.com/resonatecoop/user-api@v1.0.0-13.0.20220915120639-05dc9c04014a/model/stripe_user.go (about)

     1  package model
     2  
     3  import "github.com/google/uuid"
     4  
     5  // Stripe User
     6  type StripeUser struct {
     7  	IDRecord
     8  	CustomerID string    `bun:",unique,notnull"`
     9  	UserID     uuid.UUID `bun:"type:uuid,notnull"`
    10  	User       *User     `bun:"rel:has-one"`
    11  }