@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
14 lines (13 loc) • 472 B
TypeScript
import { IClientTokenResponse } from '../../types/index.js';
import { ClientTokenStatus } from '../../enums/index.js';
export declare class ClientToken {
readonly id: string;
readonly token: string;
readonly name: string;
readonly description: string | null;
readonly status: ClientTokenStatus;
readonly createdAt: string;
readonly updatedAt: string;
readonly revokedAt: string | null;
constructor(clientToken: IClientTokenResponse);
}