Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type Plan ¶
type Plan struct {
ID string `json:"id" yaml:"id"`
Name string `json:"name" yaml:"name"` // a machine friendly name for the feature
Title string `json:"title" yaml:"title"` // a human friendly title
Description string `json:"description" yaml:"description"`
Metadata metadata.Metadata `json:"metadata" yaml:"metadata"`
// Interval is the interval at which the plan is billed
// e.g. day, week, month, year
Interval string `json:"interval" yaml:"interval"`
// OnStartCredits is the number of credits that are awarded when a subscription is started
OnStartCredits int64 `json:"on_start_credits" yaml:"on_start_credits"`
// Products for the plan, return only, should not be set when creating a plan
Products []product.Product `json:"products" yaml:"products"`
State string
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time
}
Plan is a collection of products it is a logical grouping of products and doesn't have a corresponding billing engine entity
type ProductService ¶ added in v0.8.14
type ProductService interface {
Create(ctx context.Context, p product.Product) (product.Product, error)
GetByID(ctx context.Context, id string) (product.Product, error)
Update(ctx context.Context, p product.Product) (product.Product, error)
AddPlan(ctx context.Context, p product.Product, planID string) error
CreatePrice(ctx context.Context, price product.Price) (product.Price, error)
UpdatePrice(ctx context.Context, price product.Price) (product.Price, error)
GetPriceByID(ctx context.Context, id string) (product.Price, error)
GetPriceByProductID(ctx context.Context, id string) ([]product.Price, error)
List(ctx context.Context, flt product.Filter) ([]product.Product, error)
UpsertFeature(ctx context.Context, f product.Feature) (product.Feature, error)
GetFeatureByID(ctx context.Context, id string) (product.Feature, error)
GetFeatureByProductID(ctx context.Context, id string) ([]product.Feature, error)
}
type Repository ¶
type Repository interface {
GetByID(ctx context.Context, id string) (Plan, error)
GetByName(ctx context.Context, name string) (Plan, error)
Create(ctx context.Context, plan Plan) (Plan, error)
UpdateByName(ctx context.Context, plan Plan) (Plan, error)
List(ctx context.Context, filter Filter) ([]Plan, error)
}
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
func NewService ¶
func NewService(stripeClient *client.API, planRepository Repository, productService ProductService) *Service
Click to show internal directories.
Click to hide internal directories.