ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
18 lines (17 loc) • 442 B
TypeScript
import { Attachment } from "../../../banking/user";
interface IUploadDocumentData {
subject: string;
fileName: string;
fileExtension: string;
content: string;
entity: number;
entityId: number;
type: number;
attachment?: Attachment[];
}
interface IUploadProfilePictureData {
fileName: string;
fileExtension: string;
content: string;
}
export type { IUploadDocumentData, IUploadProfilePictureData };