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

com.aliyun.dingtalkindustry_1_0.models.DigitalStoreRightsInfoResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
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 DigitalStoreRightsInfoResponseBody extends TeaModel {
    // 权益过期时间
    @NameInMap("endTime")
    public Long endTime;

    // 门店通通讯录根节点Id
    @NameInMap("quantity")
    public Long quantity;

    // 门店通通讯录名称
    @NameInMap("rightsCode")
    public String rightsCode;

    // 门店通通讯录Code
    @NameInMap("rightsName")
    public String rightsName;

    // 权益开始时间
    @NameInMap("startTime")
    public Long startTime;

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

    public DigitalStoreRightsInfoResponseBody setEndTime(Long endTime) {
        this.endTime = endTime;
        return this;
    }
    public Long getEndTime() {
        return this.endTime;
    }

    public DigitalStoreRightsInfoResponseBody setQuantity(Long quantity) {
        this.quantity = quantity;
        return this;
    }
    public Long getQuantity() {
        return this.quantity;
    }

    public DigitalStoreRightsInfoResponseBody setRightsCode(String rightsCode) {
        this.rightsCode = rightsCode;
        return this;
    }
    public String getRightsCode() {
        return this.rightsCode;
    }

    public DigitalStoreRightsInfoResponseBody setRightsName(String rightsName) {
        this.rightsName = rightsName;
        return this;
    }
    public String getRightsName() {
        return this.rightsName;
    }

    public DigitalStoreRightsInfoResponseBody setStartTime(Long startTime) {
        this.startTime = startTime;
        return this;
    }
    public Long getStartTime() {
        return this.startTime;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy