We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec62c1 commit 238aeabCopy full SHA for 238aeab
packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts
@@ -233,6 +233,7 @@ export const unmarshalUser = (data: unknown): User => {
233
email: data.email,
234
id: data.id,
235
lastLoginAt: unmarshalDate(data.last_login_at),
236
+ locked: data.locked,
237
mfa: data.mfa,
238
organizationId: data.organization_id,
239
status: data.status,
packages/clients/src/api/iam/v1alpha1/types.gen.ts
@@ -407,6 +407,8 @@ export interface User {
407
accountRootUserId: string
408
/** Tags associated with the user. */
409
tags: string[]
410
+ /** Defines whether the user is locked. */
411
+ locked: boolean
412
}
413
414
export type AddGroupMemberRequest = {
0 commit comments