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

com.aliyun.dingtalkdatacenter_1_0.models.SyncDataScreenRequest 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.dingtalkdatacenter_1_0.models;

import com.aliyun.tea.*;

public class SyncDataScreenRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

123

*/ @NameInMap("screenId") public String screenId; /** *

This parameter is required.

* * example: *

ABC

*/ @NameInMap("ticket") public String ticket; public static SyncDataScreenRequest build(java.util.Map map) throws Exception { SyncDataScreenRequest self = new SyncDataScreenRequest(); return TeaModel.build(map, self); } public SyncDataScreenRequest setScreenId(String screenId) { this.screenId = screenId; return this; } public String getScreenId() { return this.screenId; } public SyncDataScreenRequest setTicket(String ticket) { this.ticket = ticket; return this; } public String getTicket() { return this.ticket; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy