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

com.aliyun.dingtalkexclusive_1_0.models.UpdateRealmLicenseRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class UpdateRealmLicenseRequest extends TeaModel {
    @NameInMap("detailList")
    public java.util.List detailList;

    public static UpdateRealmLicenseRequest build(java.util.Map map) throws Exception {
        UpdateRealmLicenseRequest self = new UpdateRealmLicenseRequest();
        return TeaModel.build(map, self);
    }

    public UpdateRealmLicenseRequest setDetailList(java.util.List detailList) {
        this.detailList = detailList;
        return this;
    }
    public java.util.List getDetailList() {
        return this.detailList;
    }

    public static class UpdateRealmLicenseRequestDetailList extends TeaModel {
        /**
         * example:
         * 

1001

*/ @NameInMap("licenseType") public Integer licenseType; /** * example: *

123

*/ @NameInMap("userId") public String userId; public static UpdateRealmLicenseRequestDetailList build(java.util.Map map) throws Exception { UpdateRealmLicenseRequestDetailList self = new UpdateRealmLicenseRequestDetailList(); return TeaModel.build(map, self); } public UpdateRealmLicenseRequestDetailList setLicenseType(Integer licenseType) { this.licenseType = licenseType; return this; } public Integer getLicenseType() { return this.licenseType; } public UpdateRealmLicenseRequestDetailList setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy