UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

16 lines (15 loc) 536 B
import { SerializedData } from '../../serialization/json'; export interface ListUserV2025R0 { /** * The ID of the user. */ readonly id?: number | null; /** * The name of the user. */ readonly name?: string | null; /** * The email of the user. */ readonly email?: string | null; readonly rawData?: SerializedData; } export declare function serializeListUserV2025R0(val: ListUserV2025R0): SerializedData; export declare function deserializeListUserV2025R0(val: SerializedData): ListUserV2025R0;