You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
When initiating a transfer via Paystack, the response contains critical fields such as the transfer_code, which is essential for transfer verification and tracking. However, the current implementation of the InitiateTransferResponse class does not include these fields. This makes it difficult to fully utilize the transfer details provided by Paystack's API.
Current Behavior:
The InitiateTransferResponse class only includes the following fields:
public class InitiateTransferResponse : HasRawResponse, IApiResponse
{
[JsonProperty("status")]
public bool Status { get; set; }
[JsonProperty("message")]
public string Message { get; set; }
}
Expected Behavior:
The InitiateTransferResponse should include all relevant fields from Paystack's API response, such as:
transfer_code
recipient
amount
Other key fields for comprehensive transfer data
Supporting Evidence:
Impact:
Adding these fields will ensure the library's compatibility with Paystack's API and allow developers to access all necessary information directly from the response.
The text was updated successfully, but these errors were encountered:
Description:
When initiating a transfer via Paystack, the response contains critical fields such as the transfer_code, which is essential for transfer verification and tracking. However, the current implementation of the InitiateTransferResponse class does not include these fields. This makes it difficult to fully utilize the transfer details provided by Paystack's API.
Current Behavior:
The InitiateTransferResponse class only includes the following fields:
public class InitiateTransferResponse : HasRawResponse, IApiResponse
{
[JsonProperty("status")]
public bool Status { get; set; }
}
Expected Behavior:
The InitiateTransferResponse should include all relevant fields from Paystack's API response, such as:
transfer_code
recipient
amount
Other key fields for comprehensive transfer data
Supporting Evidence:
Impact:
Adding these fields will ensure the library's compatibility with Paystack's API and allow developers to access all necessary information directly from the response.
The text was updated successfully, but these errors were encountered: