/** * Tapfiliate Node - Version 1 * Discriminator: resource=programAffiliate, operation=disapprove */ interface Credentials { tapfiliateApi: CredentialReference; } /** Disapprove an affiliate */ export type TapfiliateV1ProgramAffiliateDisapproveParams = { resource: 'programAffiliate'; operation: 'disapprove'; /** * The ID of the Program to add the affiliate to. This ID can be found as part of the URL when viewing the program on the platform. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ programId?: string | Expression; /** * The ID of the affiliate */ affiliateId?: string | Expression | PlaceholderValue; }; export type TapfiliateV1ProgramAffiliateDisapproveNode = { type: 'n8n-nodes-base.tapfiliate'; version: 1; credentials?: Credentials; config: NodeConfig; };