UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

16 lines 946 B
import { SerializedData } from '../../serialization/json'; export type UserOrGroupReferenceV2025R0TypeField = 'user' | 'group'; export interface UserOrGroupReferenceV2025R0 { /** * The type `user` or `group`. */ readonly type?: UserOrGroupReferenceV2025R0TypeField; /** * The identifier of the user or group. */ readonly id?: string; readonly rawData?: SerializedData; } export declare function serializeUserOrGroupReferenceV2025R0TypeField(val: UserOrGroupReferenceV2025R0TypeField): SerializedData; export declare function deserializeUserOrGroupReferenceV2025R0TypeField(val: SerializedData): UserOrGroupReferenceV2025R0TypeField; export declare function serializeUserOrGroupReferenceV2025R0(val: UserOrGroupReferenceV2025R0): SerializedData; export declare function deserializeUserOrGroupReferenceV2025R0(val: SerializedData): UserOrGroupReferenceV2025R0; //# sourceMappingURL=userOrGroupReferenceV2025R0.d.ts.map