-module(stripe). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export([new/1]). -export_type([stripe_client/0]). -opaque stripe_client() :: {stripe_client, binary()}. -spec new(binary()) -> stripe_client(). new(Api_key) -> {stripe_client, Api_key}.