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

com.aliyun.dingtalkworkflow_1_0.models.GrantCspaceAuthorizationRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;

import com.aliyun.tea.*;

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

3600

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

This parameter is required.

* * example: *

163xxxx658

*/ @NameInMap("spaceId") public String spaceId; /** *

This parameter is required.

* * example: *

add

*/ @NameInMap("type") public String type; /** *

This parameter is required.

* * example: *

26652461xxxx5992

*/ @NameInMap("userId") public String userId; public static GrantCspaceAuthorizationRequest build(java.util.Map map) throws Exception { GrantCspaceAuthorizationRequest self = new GrantCspaceAuthorizationRequest(); return TeaModel.build(map, self); } public GrantCspaceAuthorizationRequest setDurationSeconds(Long durationSeconds) { this.durationSeconds = durationSeconds; return this; } public Long getDurationSeconds() { return this.durationSeconds; } public GrantCspaceAuthorizationRequest setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public GrantCspaceAuthorizationRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public GrantCspaceAuthorizationRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy