All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aiwiown.face.response.BeautifyResponse Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.aiwiown.face.response;

import com.aiwiown.face.ApiResponse;
import com.aiwiown.face.internal.mapping.ApiField;

/**
 * @ClassName : BeautifyResponse
 * @Description :
 * @Author : dbin0123
 * @Date: 2020-03-15 15:45
 */
public class BeautifyResponse extends ApiResponse {
    private static final long serialVersionUID = -3201951363526537926L;

    /**
     * 美化后的图片,jpg格式。base64 编码的二进制图片数据。图片尺寸大小与底图一致。
     */
    @ApiField("result")
    private String result;

    public String getResult() {
        return result;
    }

    public void setResult(String result) {
        this.result = result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy