X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FContribution.php;h=cb138a484e0af7120db4d18cccb72075b2f70f85;hb=64a155b595059761e3a852be1a44225b29107366;hp=dc1a9861ab93a6a767aa4ae4c24432e8e3e778ee;hpb=341f8d724547c654c2c9e635aac0b0437c390c4b;p=civicrm-core.git diff --git a/api/v3/Contribution.php b/api/v3/Contribution.php index dc1a9861ab..cb138a484e 100644 --- a/api/v3/Contribution.php +++ b/api/v3/Contribution.php @@ -123,21 +123,21 @@ function _civicrm_api3_contribution_create_spec(&$params) { $params['soft_credit_to'] = array( 'name' => 'soft_credit_to', 'title' => 'Soft Credit contact ID (legacy)', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'ID of Contact to be Soft credited to (deprecated - use contribution_soft api)', 'FKClassName' => 'CRM_Contact_DAO_Contact', ); $params['honor_contact_id'] = array( 'name' => 'honor_contact_id', 'title' => 'Honoree contact ID (legacy)', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'ID of honoree contact (deprecated - use contribution_soft api)', 'FKClassName' => 'CRM_Contact_DAO_Contact', ); $params['honor_type_id'] = array( 'name' => 'honor_type_id', 'title' => 'Honoree Type (legacy)', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'Type of honoree contact (deprecated - use contribution_soft api)', 'pseudoconstant' => TRUE, ); @@ -158,9 +158,14 @@ function _civicrm_api3_contribution_create_spec(&$params) { ); $params['batch_id'] = array( 'title' => 'Batch', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'Batch which relevant transactions should be added to', ); + $params['refund_trxn_id'] = array( + 'title' => 'Refund Transaction ID', + 'type' => CRM_Utils_Type::T_STRING, + 'description' => 'Transaction ID specific to the refund taking place', + ); } /**