interface IapCloudSdkRuntime {
    createMerchantServerClient: ((access_info) => IapCloudSdkMerchantServerClient);
}

Properties

createMerchantServerClient: ((access_info) => IapCloudSdkMerchantServerClient)

create an API client for use in merchant server

Type declaration

    • (access_info): IapCloudSdkMerchantServerClient
    • Parameters

      • access_info: {
            api_key: string;
            api_server_secret: string;
            merchantGuardianPrimaryCryptoKeyMaterial: string;
            merchant_code: string;
        }
        • api_key: string
        • api_server_secret: string
        • merchantGuardianPrimaryCryptoKeyMaterial: string
        • merchant_code: string

      Returns IapCloudSdkMerchantServerClient

Generated using TypeDoc