[][src]Type Definition stripe::Response

type Response<T> = Result<T, Error>;

An alias for Result.

If blocking is enabled, defined as:

This example is not tested
type Response<T> = Result<T, Error>;

If the async feature is enabled, this type is defined as:

This example is not tested
type Response<T> = Box<dyn Future<Result<T, Error>>>;