Skip to content

Commit

Permalink
feat(#307): add new create sub parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagosiebler committed Jan 3, 2024
1 parent bb02391 commit 2ba50f8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/types/request/v5-asset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 2ba50f8

Please sign in to comment.