cn.com.antcloud.api.ato.v1_0.request.UpdateMerchantexpandMerchantRequest Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.ato.v1_0.request;
import cn.com.antcloud.api.ato.v1_0.model.ApplicationInfoUpdate;
import cn.com.antcloud.api.ato.v1_0.model.CompanyInfoUpdate;
import cn.com.antcloud.api.ato.v1_0.model.LegalInfoUpdate;
import cn.com.antcloud.api.ato.v1_0.response.UpdateMerchantexpandMerchantResponse;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 商家信息修改 */
public class UpdateMerchantexpandMerchantRequest extends AntCloudProdRequest {
@NotNull
private CompanyInfoUpdate companyInfo;
@NotNull
private LegalInfoUpdate legalInfo;
@NotNull
private ApplicationInfoUpdate applicationInfo;
@NotNull
private String payExpandId;
@NotNull
private String merchantId;
public UpdateMerchantexpandMerchantRequest(String productInstanceId) {
super("antchain.ato.merchantexpand.merchant.update", "1.0", "Java-SDK-20240808", productInstanceId);
}
public UpdateMerchantexpandMerchantRequest() {
super("antchain.ato.merchantexpand.merchant.update", "1.0", null);
this.setSdkVersion("Java-SDK-20240808");
}
/**
* 公司信息 */
public CompanyInfoUpdate getCompanyInfo() {
return this.companyInfo;
}
/**
* 公司信息 */
public void setCompanyInfo(CompanyInfoUpdate companyInfo) {
this.companyInfo = companyInfo;
}
/**
* 法人信息 */
public LegalInfoUpdate getLegalInfo() {
return this.legalInfo;
}
/**
* 法人信息 */
public void setLegalInfo(LegalInfoUpdate legalInfo) {
this.legalInfo = legalInfo;
}
/**
* 应用信息 */
public ApplicationInfoUpdate getApplicationInfo() {
return this.applicationInfo;
}
/**
* 应用信息 */
public void setApplicationInfo(ApplicationInfoUpdate applicationInfo) {
this.applicationInfo = applicationInfo;
}
/**
* 进件流水号 */
public String getPayExpandId() {
return this.payExpandId;
}
/**
* 进件流水号 */
public void setPayExpandId(String payExpandId) {
this.payExpandId = payExpandId;
}
/**
* 社会统一信用代码 */
public String getMerchantId() {
return this.merchantId;
}
/**
* 社会统一信用代码 */
public void setMerchantId(String merchantId) {
this.merchantId = merchantId;
}
}