use of com.tencentcloudapi.tci.v20190318.models.DescribeAITaskResultResponse in project tencentcloud-sdk-java by TencentCloud.
the class DescribeAITaskResult method main.
public static void main(String[] args) {
try {
Credential cred = new Credential("", "");
HttpProfile httpProfile = new HttpProfile();
httpProfile.setReqMethod("POST");
httpProfile.setConnTimeout(60);
httpProfile.setEndpoint("tci.ap-beijing.tencentcloudapi.com");
ClientProfile clientProfile = new ClientProfile();
clientProfile.setUnsignedPayload(true);
clientProfile.setHttpProfile(httpProfile);
TciClient client = new TciClient(cred, "", clientProfile);
DescribeAITaskResultRequest req = new DescribeAITaskResultRequest();
long a = 2617184392L;
req.setTaskId(a);
DescribeAITaskResultResponse res = client.DescribeAITaskResult(req);
System.out.println(DescribeAITaskResultResponse.toJsonString(res));
System.out.println(res.getRequestId());
} catch (TencentCloudSDKException e) {
e.printStackTrace();
}
}
Aggregations