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

com.aliyun.dingtalkindustry_1_0.models.CampusGetRenterMemberRequest 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

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

1987215

*/ @NameInMap("renterId") public Long renterId; /** *

This parameter is required.

* * example: *

1iasndkjas8

*/ @NameInMap("unionId") public String unionId; public static CampusGetRenterMemberRequest build(java.util.Map map) throws Exception { CampusGetRenterMemberRequest self = new CampusGetRenterMemberRequest(); return TeaModel.build(map, self); } public CampusGetRenterMemberRequest setRenterId(Long renterId) { this.renterId = renterId; return this; } public Long getRenterId() { return this.renterId; } public CampusGetRenterMemberRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy