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

com.aliyun.dingtalkfinance_1_0.models.NotifyVerifyResultResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkfinance_1_0.models;

import com.aliyun.tea.*;

public class NotifyVerifyResultResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

SUCCESS

*/ @NameInMap("result") public String result; public static NotifyVerifyResultResponseBody build(java.util.Map map) throws Exception { NotifyVerifyResultResponseBody self = new NotifyVerifyResultResponseBody(); return TeaModel.build(map, self); } public NotifyVerifyResultResponseBody setResult(String result) { this.result = result; return this; } public String getResult() { return this.result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy