View Source ExChargebee.CouponSet (ex_chargebee v0.4.5)

An interface for Interacting with coupon_sets

For More information see Chargebee coupon_set Documentation

Summary

Functions

Perform a add_coupon_codes on individual coupon_set.

Creates a coupon_set.

Perform a delete on individual coupon_set.

Perform a delete_unused_coupon_codes on individual coupon_set.

Returns a list of coupon_sets. Pagination is handled automatically unless the opt paginate is set to false.

Returns a stream of coupon_sets. Pagination is handled automatically as the stream is consumed.

Functions

Link to this function

add_coupon_codes(resource_id, params \\ %{}, opts \\ [])

View Source
@spec add_coupon_codes(String.t(), map(), keyword()) :: map() | nil

Perform a add_coupon_codes on individual coupon_set.

Find more information in the Chargebee Documentation

Link to this function

create(params, opts \\ [])

View Source
@spec create(
  map(),
  keyword()
) :: map() | nil

Creates a coupon_set.

Find more information in the Chargebee Documentation

Link to this function

delete(resource_id, params \\ %{}, opts \\ [])

View Source
@spec delete(String.t(), map(), keyword()) :: map() | nil

Perform a delete on individual coupon_set.

Find more information in the Chargebee Documentation

Link to this function

delete_unused_coupon_codes(resource_id, params \\ %{}, opts \\ [])

View Source
@spec delete_unused_coupon_codes(String.t(), map(), keyword()) :: map() | nil

Perform a delete_unused_coupon_codes on individual coupon_set.

Find more information in the Chargebee Documentation

Link to this function

list(params \\ %{}, opts \\ [])

View Source
@spec list(
  map(),
  keyword()
) :: [map()] | nil

Returns a list of coupon_sets. Pagination is handled automatically unless the opt paginate is set to false.

opts:

  • site: the site to use for the request. Defaults to the default site.
  • paginate: whether to paginate the results. Defaults to false. If false, all results will be returned.
@spec operations() :: Keyword.t()
Link to this function

retrieve(resource_id, opts \\ [])

View Source
@spec retrieve(
  String.t(),
  keyword()
) :: map() | nil
Link to this function

stream_list(params \\ %{}, opts \\ [])

View Source
@spec stream_list(
  map(),
  keyword()
) :: Enumerable.t()

Returns a stream of coupon_sets. Pagination is handled automatically as the stream is consumed.

Link to this function

update(resource_id, params, opts \\ [])

View Source
@spec update(String.t(), map(), keyword()) :: map() | nil

Updates a coupon_set.

Find more information in the Chargebee Documentation