UNPKG

mpp-sdk

Version:

SDK to talk to the Memento Payments Platform

11 lines (10 loc) 426 B
import { BaseEndpoint } from "./base.js"; import { GetPublicTokenResponse, PublicTokenInput } from "../types/public_token.js"; export default class PublicTokenEndpoint extends BaseEndpoint { /** * Creates a new temporary public token * @param data * @returns the newly created temp public token */ create(data: PublicTokenInput): Promise<import("../index.js").MPPResult<GetPublicTokenResponse>>; }