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

com.aliyun.dingtalksns_storage_1_0.models.SubscribeEventRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalksns_storage_1_0.models;

import com.aliyun.tea.*;

public class SubscribeEventRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

SPACE

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

This parameter is required.

* * example: *

scope_id

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

This parameter is required.

* * example: *

union_id

*/ @NameInMap("unionId") public String unionId; public static SubscribeEventRequest build(java.util.Map map) throws Exception { SubscribeEventRequest self = new SubscribeEventRequest(); return TeaModel.build(map, self); } public SubscribeEventRequest setScope(String scope) { this.scope = scope; return this; } public String getScope() { return this.scope; } public SubscribeEventRequest setScopeId(String scopeId) { this.scopeId = scopeId; return this; } public String getScopeId() { return this.scopeId; } public SubscribeEventRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy