/** * #user.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export type User = { t2id: string; orgId: string; username: string; }; export type AddUsersToOrgRequest = { orgId: string; usernames: string[]; }; export type AddUsersToOrgResponse = { users: User[]; }; export type GetUsersByOrgIdRequest = { id: string; }; export type GetUsersByOrgIdResponse = { users: User[]; }; export type GetUserByIdRequest = { t2id: string; }; export type GetUserByIdResponse = { user?: User | undefined; }; export type DeleteUserRequest = { t2id: string; }; export type DeleteUserResponse = { user?: User | undefined; }; //# sourceMappingURL=user.d.ts.map