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

com.dahuatech.icc.cirs.model.v202209.screenResolution.DeleteScreenResolutionResponse Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.cirs.model.v202209.screenResolution;

import com.dahuatech.icc.oauth.http.IccResponse;

/**
 * program:java-sdk
 *
 * @Author: 355079
 * @Date:2022-09-05 16:10
 * @Description:
 */
public class DeleteScreenResolutionResponse extends IccResponse {
    private String retCode;
    private String retMsg;

    public String getRetCode() {
        return retCode;
    }

    public void setRetCode(String retCode) {
        this.retCode = retCode;
    }

    public String getRetMsg() {
        return retMsg;
    }

    public void setRetMsg(String retMsg) {
        this.retMsg = retMsg;
    }
    @Override
    public String toString() {
        return "DeleteScreenResolutionResponse{"
                +"retCode"
                +retCode
                + "retMsg="
                +retMsg
                + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy