Skip to content

Commit

Permalink
Changed method signature. (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Nov 14, 2017
1 parent 7b67c71 commit 6235d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BunqSdk/Model/Core/BunqModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ protected static BunqResponse<T> FromJson<T>(BunqResponseRaw responseRaw)
return new BunqResponse<T>(responseValue, responseRaw.Headers);
}

public static T FromJsonString<T>(string json)
public static T CreateFromJsonString<T>(string json)
{
var modelValue = BunqJsonConvert.DeserializeObject<T>(json);

Expand Down

0 comments on commit 6235d89

Please sign in to comment.