box-node-sdk
Version:
Official SDK for Box Platform APIs
73 lines • 3.13 kB
TypeScript
import { SerializedData } from '../../serialization/json';
export type ArchiveV2025R0TypeField = 'archive';
export interface ArchiveV2025R0OwnedByField {
/**
* The unique identifier that represents a user who owns the archive. */
readonly id: string;
/**
* The value is always `user`. */
readonly type: string;
readonly rawData?: SerializedData;
}
export declare class ArchiveV2025R0 {
/**
* The unique identifier that represents an archive. */
readonly id: string;
/**
* The value is always `archive`. */
readonly type: ArchiveV2025R0TypeField;
/**
* The name of the archive.
*
* The following restrictions to the archive name apply: names containing
* non-printable ASCII characters, forward and backward slashes
* (`/`, `\`), names with trailing spaces, and names `.` and `..` are
* not allowed. */
readonly name: string;
/**
* The size of the archive in bytes. */
readonly size: number;
/**
* The description of the archive. */
readonly description?: string | null;
/**
* The part of an archive API response that describes the user who owns the archive. */
readonly ownedBy?: ArchiveV2025R0OwnedByField;
readonly rawData?: SerializedData;
constructor(fields: Omit<ArchiveV2025R0, 'type'> & Partial<Pick<ArchiveV2025R0, 'type'>>);
}
export interface ArchiveV2025R0Input {
/**
* The unique identifier that represents an archive. */
readonly id: string;
/**
* The value is always `archive`. */
readonly type?: ArchiveV2025R0TypeField;
/**
* The name of the archive.
*
* The following restrictions to the archive name apply: names containing
* non-printable ASCII characters, forward and backward slashes
* (`/`, `\`), names with trailing spaces, and names `.` and `..` are
* not allowed. */
readonly name: string;
/**
* The size of the archive in bytes. */
readonly size: number;
/**
* The description of the archive. */
readonly description?: string | null;
/**
* The part of an archive API response that describes the user who owns the archive. */
readonly ownedBy?: ArchiveV2025R0OwnedByField;
readonly rawData?: SerializedData;
}
export declare function serializeArchiveV2025R0TypeField(val: ArchiveV2025R0TypeField): SerializedData;
export declare function deserializeArchiveV2025R0TypeField(val: SerializedData): ArchiveV2025R0TypeField;
export declare function serializeArchiveV2025R0OwnedByField(val: ArchiveV2025R0OwnedByField): SerializedData;
export declare function deserializeArchiveV2025R0OwnedByField(val: SerializedData): ArchiveV2025R0OwnedByField;
export declare function serializeArchiveV2025R0(val: ArchiveV2025R0): SerializedData;
export declare function deserializeArchiveV2025R0(val: SerializedData): ArchiveV2025R0;
export declare function serializeArchiveV2025R0Input(val: ArchiveV2025R0Input): SerializedData;
export declare function deserializeArchiveV2025R0Input(val: SerializedData): ArchiveV2025R0Input;
//# sourceMappingURL=archiveV2025R0.d.ts.map