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

com.aliyun.dingtalkapp_market_1_0.models.CreateAppGoodsServiceConversationRequest 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.dingtalkapp_market_1_0.models;

import com.aliyun.tea.*;

public class CreateAppGoodsServiceConversationRequest extends TeaModel {
    @NameInMap("isvUserId")
    public String isvUserId;

    @NameInMap("orderId")
    public Long orderId;

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

    public CreateAppGoodsServiceConversationRequest setIsvUserId(String isvUserId) {
        this.isvUserId = isvUserId;
        return this;
    }
    public String getIsvUserId() {
        return this.isvUserId;
    }

    public CreateAppGoodsServiceConversationRequest setOrderId(Long orderId) {
        this.orderId = orderId;
        return this;
    }
    public Long getOrderId() {
        return this.orderId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy