![JAR search and dependency download from the Maven repository](/logo.png)
com.qcloud.PornDetectInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qcloud-sdk Show documentation
Show all versions of qcloud-sdk Show documentation
qcloud sdk for tencentyun
The newest version!
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.qcloud;
/**
*
* @author jusisli
*/
public class PornDetectInfo {
public int code;
public String message;
public String name;
public PornDetectInfoData data;
public PornDetectInfo() {
code = 0;
message = null;
name = null;
data = new PornDetectInfoData();
}
public void print() {
System.out.println("code = " + code);
System.out.println("message = " + message);
System.out.println("name = " + name);
System.out.println("data = {");
data.print();
System.out.println("}");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy