com.alipay.api.domain.AlipayAccountExrateRateSyncModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 汇率openapi通用操作接口
*
* @author auto create
* @since 1.0, 2020-06-22 21:19:43
*/
public class AlipayAccountExrateRateSyncModel extends AlipayObject {
private static final long serialVersionUID = 3211458921249235275L;
/**
* 通用接口入参,json字符串的形式。比如该openapi绑定客户汇率发布能力,则以json字符串的形式传入客户汇率
*/
@ApiField("biz_context")
private String bizContext;
/**
* 客户汇率发布
*/
@ApiField("biz_type")
private String bizType;
public String getBizContext() {
return this.bizContext;
}
public void setBizContext(String bizContext) {
this.bizContext = bizContext;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
}