interface ContractSignature {
    contract?: Contract;
    createdAt?: Date;
    expiresAt?: Date;
    id: string;
    organizationId: string;
    signedAt?: Date;
}

Properties

contract?: Contract

The contract signed.

createdAt?: Date

The creation date of the contract signature.

expiresAt?: Date

The expiration date of the contract signature.

id: string

ID of the contract signature.

organizationId: string

The Organization ID which signed the contract.

signedAt?: Date

The signing date of the contract signature.