open-banking-pfm-sdk
Version:
The Open Banking PFM SDK uses Client classes and with **Promises** to get responses from the Open Banking PFM API in an easier way and structured as data models.
13 lines (12 loc) • 420 B
TypeScript
import ISignUpResponse from '../interfaces/ISignUpResponse';
export default class SignUpResponse implements ISignUpResponse {
id: number;
name: string;
firstLastName: string;
secondLastName: string;
email: string;
companyName: string;
username: string;
apiKey: string;
constructor({ id, name, firstLastName, secondLastName, email, companyName, username, apiKey }: ISignUpResponse);
}