MtdSavingsAccountDto
One UK savings account, with whatever interest HMRC hold against it for the year.
Properties
| Name | Type | Description |
|---|---|---|
| savingsAccountId | string | HMRC's identifier for the account. |
HMRC's identifier for the account. | ||
| accountName | string | The account's display name, as HMRC hold it. Unique per client at HMRC. |
The account's display name, as HMRC hold it. Unique per client at HMRC. | ||
| isHeld | boolean | Whether HMRC hold interest for this account in this tax year. |
Whether HMRC hold interest for this account in this tax year. | ||
| interest | SavingsAccountInterest | |
| lastAction | MtdSubmissionStampDto | |
JSON Example
{
"savingsAccountId": "string",
"accountName": "string",
"isHeld": false,
"interest": {
"taxedUkInterest": 0,
"untaxedUkInterest": 0
},
"lastAction": {
"kind": "string",
"action": "string",
"reference": "string",
"taxYear": "string",
"performedByUserCode": "string"
}
}