contractsDetailCopy: "contractsDetailCopy" = 'contractsDetailCopy'

Method name for PRE contractsDetailCopyPre and POST contractsDetailCopy

Triggered after pressing the Duplicate from contracts list /#/pm/contracts or contract detail /#/pm/contracts/<contractId>.

Notes: contractCopyAPI is exclusively accessible within the contractsDetailCopy method. Attempting to access contractCopyAPI within the contractsDetailCopyPre method will result in it being undefined.

Additional Properties:

  • contractCopyAPI: This is a quoteAPI designed for interacting with a copy of the contract.
  • contractOriginAPI: This is a quoteAPI designed for interacting with the original contract.

Example: (Basic)

export const contractsDetailCopy = async ({ api, contractOriginAPI, contractCopyAPI }) => {
// TODO: Add your code
return;
}

Generated using TypeDoc