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

com.aliyun.dingtalkwatt_1_0.models.CheckInCrowdsByMobileRequest 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.dingtalkwatt_1_0.models;

import com.aliyun.tea.*;

public class CheckInCrowdsByMobileRequest extends TeaModel {
    /**
     * example:
     * 

12520

* * if can be null: *

true

*/ @NameInMap("crowdIds") public byte[] crowdIds; /** *

This parameter is required.

* * example: *

N5u3hS6KJeoUdopXW4GzFg==

*/ @NameInMap("mobile") public String mobile; public static CheckInCrowdsByMobileRequest build(java.util.Map map) throws Exception { CheckInCrowdsByMobileRequest self = new CheckInCrowdsByMobileRequest(); return TeaModel.build(map, self); } public CheckInCrowdsByMobileRequest setCrowdIds(byte[] crowdIds) { this.crowdIds = crowdIds; return this; } public byte[] getCrowdIds() { return this.crowdIds; } public CheckInCrowdsByMobileRequest setMobile(String mobile) { this.mobile = mobile; return this; } public String getMobile() { return this.mobile; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy