feat(#307): add new create sub parameters

This commit is contained in:
tiagosiebler
2024-01-03 15:39:19 +00:00
parent bb023919ee
commit 2ba50f82e6

View File

@@ -127,7 +127,15 @@ export interface WithdrawParamsV5 {
export interface CreateSubMemberParamsV5 {
username: string;
password?: string;
/**
* 1: normal, 6: custodial
*/
memberType: 1 | 6;
/**
* 0: quick login disabled (default), 1: quick login enabled
*/
switch?: 0 | 1;
isUta?: boolean;
note?: string;
}