@theredspace/spp-client
    Preparing search index...

    Interface AgreementToProject

    interface AgreementToProject {
        active: "0" | "1";
        agreementid: string;
        created: string;
        customerid?: string;
        id: string;
        projectid: string;
        updated: string;
    }
    Index

    Properties

    active: "0" | "1"

    “1/0” flag: active (defaults to 1 when adding)

    agreementid: string

    [Required] ID of the associated agreement

    created: string

    [Read-only] When the link was created

    customerid?: string

    ID of the associated customer (optional if project infers it)

    id: string

    [Read-only] Unique internal ID

    projectid: string

    [Required] ID of the associated project

    updated: string

    [Read-only] When the link was last modified

    Usage and Relationships

    The AgreementToProject represents the linkage between an agreement and a project. It ensures that deliverables and obligations are tracked against the correct project.

    Related Types:

    • Agreement: The agreement linked to the project.
    • Project: The project associated with the agreement.

    Key Fields:

    • agreement_id: Identifier for the linked agreement.
    • project_id: Identifier for the linked project.