20 lines
629 B
TypeScript
20 lines
629 B
TypeScript
import Resource from "../Resource";
|
|
import EBlockchainName from "./EBlockchainName";
|
|
import EAnchoringStatus from "./EAnchoringStatus";
|
|
import OfficeFolder from "./OfficeFolder";
|
|
export default class OfficeFolderAnchor extends Resource {
|
|
uid?: string;
|
|
hash_sources?: string[];
|
|
root_hash?: string;
|
|
blockchain?: EBlockchainName | string;
|
|
status?: EAnchoringStatus | string;
|
|
anchor_nb_try?: number;
|
|
tx_id: string | null;
|
|
tx_link: string | null;
|
|
tx_hash: string | null;
|
|
folder?: OfficeFolder | null;
|
|
anchored_at?: Date | null;
|
|
created_at?: Date | null;
|
|
updated_at?: Date | null;
|
|
}
|