com.alipay.api.domain.AlipayPayApplepayTransactionauthtokenDeleteModel 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 java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 注销拉取支付结果通知的权限authToken
*
* @author auto create
* @since 1.0, 2023-01-31 17:05:51
*/
public class AlipayPayApplepayTransactionauthtokenDeleteModel extends AlipayObject {
private static final long serialVersionUID = 3255539536927196416L;
/**
* 设备id
*/
@ApiField("device_identifier")
private String deviceIdentifier;
/**
* 卡id
*/
@ApiField("provisioning_bundle_identifier")
private String provisioningBundleIdentifier;
/**
* 卡id列表
*/
@ApiListField("provisioning_bundle_identifiers")
@ApiField("string")
private List provisioningBundleIdentifiers;
/**
* 推送通知token
*/
@ApiField("push_token")
private String pushToken;
/**
* uid
*/
@ApiField("reference_identifier")
private String referenceIdentifier;
/**
* uid
*/
@ApiField("reference_open_id")
private String referenceOpenId;
public String getDeviceIdentifier() {
return this.deviceIdentifier;
}
public void setDeviceIdentifier(String deviceIdentifier) {
this.deviceIdentifier = deviceIdentifier;
}
public String getProvisioningBundleIdentifier() {
return this.provisioningBundleIdentifier;
}
public void setProvisioningBundleIdentifier(String provisioningBundleIdentifier) {
this.provisioningBundleIdentifier = provisioningBundleIdentifier;
}
public List getProvisioningBundleIdentifiers() {
return this.provisioningBundleIdentifiers;
}
public void setProvisioningBundleIdentifiers(List provisioningBundleIdentifiers) {
this.provisioningBundleIdentifiers = provisioningBundleIdentifiers;
}
public String getPushToken() {
return this.pushToken;
}
public void setPushToken(String pushToken) {
this.pushToken = pushToken;
}
public String getReferenceIdentifier() {
return this.referenceIdentifier;
}
public void setReferenceIdentifier(String referenceIdentifier) {
this.referenceIdentifier = referenceIdentifier;
}
public String getReferenceOpenId() {
return this.referenceOpenId;
}
public void setReferenceOpenId(String referenceOpenId) {
this.referenceOpenId = referenceOpenId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy