machinomy
Version:
Micropayments powered by Ethereum
11 lines (10 loc) • 370 B
TypeScript
import Serde from './Serde';
export declare class AcceptPaymentResponse {
token: string;
constructor(token: string);
}
export declare class AcceptPaymentResponseSerde implements Serde<AcceptPaymentResponse> {
static instance: AcceptPaymentResponseSerde;
serialize(obj: AcceptPaymentResponse): object;
deserialize(data: any): AcceptPaymentResponse;
}