Documentation ¶
Index ¶
- Variables
- func GetStripeTestClockFromContext(ctx context.Context) (string, bool)
- func SetStripeTestClockInContext(ctx context.Context, s string) context.Context
- type Address
- type Customer
- type Filter
- type PaymentMethod
- type Provider
- type Repository
- type Service
- func (s Service) Create(ctx context.Context, customer Customer) (Customer, error)
- func (s Service) Delete(ctx context.Context, id string) error
- func (s Service) GetByID(ctx context.Context, id string) (Customer, error)
- func (s Service) GetByOrgID(ctx context.Context, orgID string) (Customer, error)
- func (s Service) List(ctx context.Context, filter Filter) ([]Customer, error)
- func (s Service) ListPaymentMethods(ctx context.Context, id string) ([]PaymentMethod, error)
- func (s Service) Update(ctx context.Context, customer Customer) (Customer, error)
- type State
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrNotFound = errors.New("customer not found") ErrInvalidUUID = errors.New("invalid syntax of uuid") ErrInvalidID = errors.New("billing customer id is invalid") ErrConflict = errors.New("customer already exist") ErrInvalidDetail = errors.New("invalid billing customer detail") ErrDisabled = errors.New("billing customer is disabled") )
Functions ¶
func GetStripeTestClockFromContext ¶ added in v0.8.29
GetStripeTestClockFromContext returns the stripe test clock id from the context
Types ¶
type Customer ¶
type Customer struct { ID string OrgID string ProviderID string // identifier set by the billing engine provider Name string Email string Phone string Address Address // Currency Three-letter ISO 4217 currency code in lower case Currency string `default:"usd"` Metadata metadata.Metadata // Stripe specific fields // StripeTestClockID is used for testing purposes only to simulate a subscription StripeTestClockID *string State State CreatedAt time.Time UpdatedAt time.Time DeletedAt *time.Time }
type PaymentMethod ¶ added in v0.8.13
type Repository ¶
type Repository interface { GetByID(ctx context.Context, id string) (Customer, error) List(ctx context.Context, filter Filter) ([]Customer, error) Create(ctx context.Context, customer Customer) (Customer, error) UpdateByID(ctx context.Context, customer Customer) (Customer, error) Delete(ctx context.Context, id string) error }
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
func NewService ¶
func NewService(stripeClient *client.API, repository Repository) *Service
func (Service) GetByOrgID ¶
func (Service) ListPaymentMethods ¶ added in v0.8.13
Click to show internal directories.
Click to hide internal directories.