Class AiGatewayApiExecutor
Inheritance
AiGatewayApiExecutor
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public class AiGatewayApiExecutor : IAiGatewayApiExecutor
Constructors
|
Edit this page
View Source
AiGatewayApiExecutor(ICrowdinApiClient)
Declaration
public AiGatewayApiExecutor(ICrowdinApiClient apiClient)
Parameters
Methods
|
Edit this page
View Source
ExecuteDelete(long?, long, string)
Declaration
[PublicAPI]
public Task<JObject> ExecuteDelete(long? userId, long aiProviderId, string path)
Parameters
Returns
| Type |
Description |
| Task<JObject> |
|
|
Edit this page
View Source
ExecuteGet(long?, long, string)
Declaration
[PublicAPI]
public Task<JObject> ExecuteGet(long? userId, long aiProviderId, string path)
Parameters
Returns
| Type |
Description |
| Task<JObject> |
|
|
Edit this page
View Source
ExecutePatch(long?, long, string, object)
Declaration
[PublicAPI]
public Task<JObject> ExecutePatch(long? userId, long aiProviderId, string path, object request)
Parameters
Returns
| Type |
Description |
| Task<JObject> |
|
|
Edit this page
View Source
ExecutePost(long?, long, string, object)
Declaration
[PublicAPI]
public Task<JObject> ExecutePost(long? userId, long aiProviderId, string path, object request)
Parameters
Returns
| Type |
Description |
| Task<JObject> |
|
|
Edit this page
View Source
ExecutePut(long?, long, string, object)
Declaration
[PublicAPI]
public Task<JObject> ExecutePut(long? userId, long aiProviderId, string path, object request)
Parameters
Returns
| Type |
Description |
| Task<JObject> |
|
Implements