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

com.aliyun.dingtalkcrm_1_0.models.GetNavigationCatalogRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetNavigationCatalogRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

6360a371-4ffa-464b-a935-39817c3ccbe8

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

This parameter is required.

* * example: *

sale

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

This parameter is required.

* * example: *

16044739461008808747

*/ @NameInMap("operatorUserId") public String operatorUserId; public static GetNavigationCatalogRequest build(java.util.Map map) throws Exception { GetNavigationCatalogRequest self = new GetNavigationCatalogRequest(); return TeaModel.build(map, self); } public GetNavigationCatalogRequest setBizTraceId(String bizTraceId) { this.bizTraceId = bizTraceId; return this; } public String getBizTraceId() { return this.bizTraceId; } public GetNavigationCatalogRequest setModule(String module) { this.module = module; return this; } public String getModule() { return this.module; } public GetNavigationCatalogRequest setOperatorUserId(String operatorUserId) { this.operatorUserId = operatorUserId; return this; } public String getOperatorUserId() { return this.operatorUserId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy