com.alipay.api.response.AlipayIserviceCcmServiceBuyResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.iservice.ccm.service.buy response.
*
* @author auto create
* @since 1.0, 2020-10-19 16:45:37
*/
public class AlipayIserviceCcmServiceBuyResponse extends AlipayResponse {
private static final long serialVersionUID = 3551628995913398955L;
/**
* 服务实例id
*/
@ApiField("service_instance_id")
private Long serviceInstanceId;
/**
* 商户在CCM的租户id
*/
@ApiField("tenant_id")
private String tenantId;
public void setServiceInstanceId(Long serviceInstanceId) {
this.serviceInstanceId = serviceInstanceId;
}
public Long getServiceInstanceId( ) {
return this.serviceInstanceId;
}
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}
public String getTenantId( ) {
return this.tenantId;
}
}