seerbit-nodejs
Version:
SeerBit NodsJS SDK
24 lines (23 loc) • 583 B
TypeScript
declare namespace IStandard {
interface InitializeRequest {
amount: string;
callbackUrl: string;
redirectLink?: string;
country: string;
currency: string;
email: string;
paymentReference: string;
productDescription?: string | null;
productId?: string | null;
hash: string;
hashType?: string;
publicKey?: string;
fullName: string;
tokenize: boolean;
}
interface InitializeResponse {
code: string;
payments: {};
message: string;
}
}