Documentation ¶
Overview ¶
Package price provides the /prices APIs
Index ¶
- func Get(id string, params *stripe.PriceParams) (*stripe.Price, error)
- func New(params *stripe.PriceParams) (*stripe.Price, error)
- func Update(id string, params *stripe.PriceParams) (*stripe.Price, error)
- type Client
- func (c Client) Get(id string, params *stripe.PriceParams) (*stripe.Price, error)
- func (c Client) List(listParams *stripe.PriceListParams) *Iter
- func (c Client) New(params *stripe.PriceParams) (*stripe.Price, error)
- func (c Client) Search(params *stripe.PriceSearchParams) *SearchIter
- func (c Client) Update(id string, params *stripe.PriceParams) (*stripe.Price, error)
- type Iter
- type SearchIter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶
Client is used to invoke /prices APIs.
func (Client) List ¶
func (c Client) List(listParams *stripe.PriceListParams) *Iter
Returns a list of your active prices, excluding [inline prices](https://stripe.com/docs/products-prices/pricing-models#inline-pricing). For the list of inactive prices, set active to false.
func (Client) New ¶
Creates a new price for an existing product. The price can be recurring or one-time.
func (Client) Search ¶
func (c Client) Search(params *stripe.PriceSearchParams) *SearchIter
Search for prices you've previously created using Stripe's [Search Query Language](https://stripe.com/docs/search#search-query-language). Don't use search in read-after-write flows where strict consistency is necessary. Under normal operating conditions, data is searchable in less than a minute. Occasionally, propagation of new or updated data can be up to an hour behind during outages. Search functionality is not available to merchants in India.
type Iter ¶
Iter is an iterator for prices.
func List ¶
func List(params *stripe.PriceListParams) *Iter
Returns a list of your active prices, excluding [inline prices](https://stripe.com/docs/products-prices/pricing-models#inline-pricing). For the list of inactive prices, set active to false.
type SearchIter ¶
type SearchIter struct {
*stripe.SearchIter
}
SearchIter is an iterator for prices.
func Search ¶
func Search(params *stripe.PriceSearchParams) *SearchIter
Search for prices you've previously created using Stripe's [Search Query Language](https://stripe.com/docs/search#search-query-language). Don't use search in read-after-write flows where strict consistency is necessary. Under normal operating conditions, data is searchable in less than a minute. Occasionally, propagation of new or updated data can be up to an hour behind during outages. Search functionality is not available to merchants in India.
func (*SearchIter) Price ¶
func (i *SearchIter) Price() *stripe.Price
Price returns the price which the iterator is currently pointing to.
func (*SearchIter) PriceSearchResult ¶
func (i *SearchIter) PriceSearchResult() *stripe.PriceSearchResult
PriceSearchResult returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.