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.
Inherited Members
Namespace: BoldSign.Api
Assembly: BoldSign.Api.dll
Syntax
public interface IPlanClient : IApiAccessor
Methods
| Improve this Doc View SourceGetApiCreditsCount()
Gets the Api credits details of the user.
Declaration
BillingViewModel GetApiCreditsCount()
Returns
Type | Description |
---|---|
BillingViewModel | BillingViewModel |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
GetApiCreditsCountAsync()
Gets the Api credits details of the user.
Declaration
Task<BillingViewModel> GetApiCreditsCountAsync()
Returns
Type | Description |
---|---|
Task<BillingViewModel> | Task of ApiResponse (BillingViewModel) |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
GetApiCreditsCountAsyncWithHttpInfo()
Gets the Api credits details of the user.
Declaration
Task<ApiResponse<BillingViewModel>> GetApiCreditsCountAsyncWithHttpInfo()
Returns
Type | Description |
---|---|
Task<ApiResponse<BillingViewModel>> | ApiResponse of BillingViewModel |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
GetApiCreditsCountWithHttpInfo()
Gets the Api credits details of the user.
Declaration
ApiResponse<BillingViewModel> GetApiCreditsCountWithHttpInfo()
Returns
Type | Description |
---|---|
ApiResponse<BillingViewModel> | ApiResponse of BillingViewModel |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |