palmpaywrappersdk
Version:
PalmPay Wrapper Sdk
55 lines (42 loc) • 1.4 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*export class PayOutQueryRequestBuilder extends BuildPayload {
private merchantId?: string;
private businessType?: string;
private bankCode?: string;
private bankAccNo?: string;
private palmpayAccNo?: string;
constructor(requestTime: number, version: string, nonceStr: string) {
super(requestTime, version, nonceStr);
}
public setMerchantId(merchantId: string): PayOutQueryRequestBuilder {
this.merchantId = merchantId;
return this;
}
public setBusinessType(businessType: string): PayOutQueryRequestBuilder {
this.businessType = businessType;
return this;
}
public setBankCode(bankCode: string): PayOutQueryRequestBuilder {
this.bankCode = bankCode;
return this;
}
public setBankAccNo(bankAccNo: string): PayOutQueryRequestBuilder {
this.bankAccNo = bankAccNo;
return this;
}
public setPalmpayAccNo(palmpayAccNo: string): PayOutQueryRequestBuilder {
this.palmpayAccNo = palmpayAccNo;
return this;
}
public build(): PayOutQueryRequest {
return new PayOutQueryRequest(
super.build(),
this.merchantId,
this.businessType,
this.bankCode,
this.bankAccNo,
this.palmpayAccNo
);
}
} */