# SourceOfCash

Source where funds have come from for the payment. The value of this property **must** be equal to one of the [known values](#known-values).

Both `SourceOfCash` and its sub-values are "soft" fields. For more information, see [Soft fields](/products/payments-odl/api-docs/ripplenet/resources/standard-ripplenet-payment-object#soft-fields).

* Is optional
* Type: `string`


## Known values

| Value | Description |
|  --- | --- |
| `ALMY` | Alimony |
| `CASH` | CashProceeds |
| `COMP` | Compensation |
| `EMIN` | EmployeeIncome |
| `GIFT` | Gift |
| `INHE` | Inheritance |
| `INLQ` | InsurancePremiumLiquidation |
| `PACA` | PaidUpCapital |
| `REDM` | Redemption |
| `REPY` | RetirementPolicy |
| `REST` | RealEstateSale |
| `RETA` | RetainedEarnings |
| `SALE` | SaleOfGoods |
| `SEAQ` | SaleAquisitionCorporation |
| `SELF` | SelfEmploymentIncome |
| `SVGS` | Savings |
| `WINS` | Winnings |


## JSON schema extract


```json
"SourceOfCash": {
    "type": "string",
    "description": "Source where funds have come from for the payment.",
    "enum": [
        "ALMY",
        "CASH",
        "COMP",
        "EMIN",
        "GIFT",
        "INHE",
        "INLQ",
        "PACA",
        "REDM",
        "REPY",
        "REST",
        "RETA",
        "SALE",
        "SEAQ",
        "SELF",
        "SVGS",
        "WINS"
    ]
}
```