export type files_Fields = { /** * ESignatureStatus reflects the e-signature state when the file is part of a signing flow. */ eSignatureStatus?: files_Fields.eSignatureStatus; /** * FileUrl is the external link target, only set for link items. */ linkUrl?: string; /** * Name is the display name of the file, folder, or link. */ name?: string; /** * Path is the location of the item within its file channel. */ path?: string; /** * Size is the file size in bytes. */ size?: number; /** * Status indicates whether the file's binary data has finished uploading. */ status?: files_Fields.status; }; export declare namespace files_Fields { /** * ESignatureStatus reflects the e-signature state when the file is part of a signing flow. */ enum eSignatureStatus { PENDING = "pending", SENT = "sent", DONE = "done" } /** * Status indicates whether the file's binary data has finished uploading. */ enum status { PENDING = "pending", COMPLETE = "complete" } }