Documentation ¶
Overview ¶
Package promotioncode provides the /promotion_codes APIs
Index ¶
- func Get(id string, params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
- func New(params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
- func Update(id string, params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
- type Client
- func (c Client) Get(id string, params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
- func (c Client) List(listParams *stripe.PromotionCodeListParams) *Iter
- func (c Client) New(params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
- func (c Client) Update(id string, params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
- type Iter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Get ¶
func Get(id string, params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
Get returns the details of a promotion code.
func New ¶
func New(params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
New creates a new promotion code.
func Update ¶
func Update(id string, params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
Update updates a promotion code's properties.
Types ¶
type Client ¶
Client is used to invoke /promotion_codes APIs.
func (Client) Get ¶
func (c Client) Get(id string, params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
Get returns the details of a promotion code.
func (Client) List ¶
func (c Client) List(listParams *stripe.PromotionCodeListParams) *Iter
List returns a list of promotion codes.
func (Client) New ¶
func (c Client) New(params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
New creates a new promotion code.
func (Client) Update ¶
func (c Client) Update(id string, params *stripe.PromotionCodeParams) (*stripe.PromotionCode, error)
Update updates a promotion code's properties.
type Iter ¶
Iter is an iterator for promotion codes.
func List ¶
func List(params *stripe.PromotionCodeListParams) *Iter
List returns a list of promotion codes.
func (*Iter) PromotionCode ¶
func (i *Iter) PromotionCode() *stripe.PromotionCode
PromotionCode returns the promotion code which the iterator is currently pointing to.
func (*Iter) PromotionCodeList ¶
func (i *Iter) PromotionCodeList() *stripe.PromotionCodeList
PromotionCodeList returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.