proxyGetWalletKitConfig method

Future<ProxyTGetWalletKitConfigResponse> proxyGetWalletKitConfig({
  1. required ProxyTGetWalletKitConfigBody input,
})

Produce a SignedRequest from ProxyTSignupBody by using the client's stamp function.

See also: Signup. Get wallet kit settings and feature toggles for the calling organization.

Sign the provided ProxyTGetWalletKitConfigBody with the client's stamp function and submit the request (POST /v1/wallet_kit_config).

See also: stampGetWalletKitConfig.

Implementation

/// Get wallet kit settings and feature toggles for the calling organization.
///
/// Sign the provided `ProxyTGetWalletKitConfigBody` with the client's `stamp` function and submit the request (POST /v1/wallet_kit_config).
///
/// See also: `stampGetWalletKitConfig`.

Future<ProxyTGetWalletKitConfigResponse> proxyGetWalletKitConfig({
  required ProxyTGetWalletKitConfigBody input,
}) async {
  return await authProxyRequest<ProxyTGetWalletKitConfigBody,
          ProxyTGetWalletKitConfigResponse>("/v1/wallet_kit_config", input,
      (json) => ProxyTGetWalletKitConfigResponse.fromJson(json));
}