interface Contract {
    createdAt?: Date;
    id: string;
    name: string;
    type: ContractType;
    updatedAt?: Date;
    version: number;
}

Properties

createdAt?: Date

The creation date of the contract.

id: string

ID of the contract.

name: string

The name of the contract.

The type of the contract.

updatedAt?: Date

The last modification date of the contract.

version: number

The version of the contract.