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

com.aliyun.dingtalkyida_1_0.models.RenewTenantOrderRequest 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.dingtalkyida_1_0.models;

import com.aliyun.tea.*;

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

hexaaaa

*/ @NameInMap("accessKey") public String accessKey; /** * example: *

44234122

*/ @NameInMap("callerUnionId") public String callerUnionId; /** * example: *

1234567891234

*/ @NameInMap("endTimeGMT") public Long endTimeGMT; public static RenewTenantOrderRequest build(java.util.Map map) throws Exception { RenewTenantOrderRequest self = new RenewTenantOrderRequest(); return TeaModel.build(map, self); } public RenewTenantOrderRequest setAccessKey(String accessKey) { this.accessKey = accessKey; return this; } public String getAccessKey() { return this.accessKey; } public RenewTenantOrderRequest setCallerUnionId(String callerUnionId) { this.callerUnionId = callerUnionId; return this; } public String getCallerUnionId() { return this.callerUnionId; } public RenewTenantOrderRequest setEndTimeGMT(Long endTimeGMT) { this.endTimeGMT = endTimeGMT; return this; } public Long getEndTimeGMT() { return this.endTimeGMT; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy