Interface IPlanClient
Represents a function to interact with the API endpoints. The function perform action such as getting the Api credit details and so on.
public interface IPlanClient : IApiAccessor
- Inherited Members
Methods
GetApiCreditsCount()
Gets the Api credits details of the user.
BillingViewModel GetApiCreditsCount()
Returns
- BillingViewModel
BillingViewModel
Exceptions
- ApiException
Thrown when fails to make API call
GetApiCreditsCountAsync()
Gets the Api credits details of the user.
Task<BillingViewModel> GetApiCreditsCountAsync()
Returns
- Task<BillingViewModel>
Task of ApiResponse (BillingViewModel)
Exceptions
- ApiException
Thrown when fails to make API call
GetApiCreditsCountAsyncWithHttpInfo()
Gets the Api credits details of the user.
Task<ApiResponse<BillingViewModel>> GetApiCreditsCountAsyncWithHttpInfo()
Returns
- Task<ApiResponse<BillingViewModel>>
ApiResponse of BillingViewModel
Exceptions
- ApiException
Thrown when fails to make API call
GetApiCreditsCountWithHttpInfo()
Gets the Api credits details of the user.
ApiResponse<BillingViewModel> GetApiCreditsCountWithHttpInfo()
Returns
- ApiResponse<BillingViewModel>
ApiResponse of BillingViewModel
Exceptions
- ApiException
Thrown when fails to make API call