Documentation ¶
Overview ¶
Package quotephase provides the /quote_phases APIs
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Get ¶
func Get(id string, params *stripe.QuotePhaseParams) (*stripe.QuotePhase, error)
Retrieves the quote phase with the given ID.
Types ¶
type Client ¶
Client is used to invoke /quote_phases APIs.
func (Client) Get ¶
func (c Client) Get(id string, params *stripe.QuotePhaseParams) (*stripe.QuotePhase, error)
Retrieves the quote phase with the given ID.
func (Client) ListLineItems ¶
func (c Client) ListLineItems(listParams *stripe.QuotePhaseListLineItemsParams) *LineItemIter
When retrieving a quote phase, there is an includable line_items property containing the first handful of those items. There is also a URL where you can retrieve the full (paginated) list of line items.
type LineItemIter ¶
LineItemIter is an iterator for line items.
func ListLineItems ¶
func ListLineItems(params *stripe.QuotePhaseListLineItemsParams) *LineItemIter
When retrieving a quote phase, there is an includable line_items property containing the first handful of those items. There is also a URL where you can retrieve the full (paginated) list of line items.
func (*LineItemIter) LineItem ¶
func (i *LineItemIter) LineItem() *stripe.LineItem
LineItem returns the line item which the iterator is currently pointing to.
func (*LineItemIter) LineItemList ¶
func (i *LineItemIter) LineItemList() *stripe.LineItemList
LineItemList returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.