OptimalPayments / c-sharp_SDK

Optimal Payments c-sharp SDK
MIT License
3 stars 3 forks source link

OptimalPayments.CustomerVault.CustomerVaultService #4

Open judgeprophet opened 8 years ago

judgeprophet commented 8 years ago

It's seems that in C# the building of the querystring in the "get" method of OptimalPayments.CustomerVault.CustomerVaultService is in Comments, but not in the JAVA SDK version.

    public Profile get(Profile profile, bool includeAddresses = false, bool includeCards = false)
        {
...
            Request request = new Request(
                method: RequestType.GET,
                uri: this.prepareURI("/profiles/" + profile.id())
            //    queryStr: queryStr
            );
...
}