Skip to content

Commit

Permalink
Add C(r)UD sonstige Einnahme (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
XiangRongLin authored Jan 16, 2023
1 parent 3eb7f7d commit 846b901
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,20 @@ can be found in the `errors` field of the response body. More information about

> Delete an existing ratenkredit. The Haushaltsposition is referenced by the `id`.
### Update Sonstige Einnahme

**addSonstigeEinnahme** ( vorgangsnummer String!, sonstigeEinnahme [SonstigeEinnahme](#sonstigeEinnahme)! ) -> [BasicCreatedResponse](#basiccreatedresponse)!

> Add a sonstige Einnahme to a Vorgang. The Response contains the `id` of the created Haushaltsposition. This `id` can be used to update or delete this Haushaltsposition.
**updateSonstigeEinnahme** ( vorgangsnummer: String!, id: String!, sonstigeEinnahme [SonstigeEinnahme](#sonstigeEinnahme)! ) -> [BasicResponse](#basicresponse)!

> Update an existing sonstige Einnahme. The Haushaltsposition is referenced by the `id`.
**deleteSonstigeEinnahme** ( vorgangsnummer: String!, id: String!) -> [BasicResponse](#basicresponse)!

> Delete an existing sonstige Einnahme. The Haushaltsposition is referenced by the `id`.
### Update Sonstige Verbindlichkeit

#### Hints
Expand Down Expand Up @@ -1047,6 +1061,13 @@ In addition there is the value "SONSTIGE" ("other")
"wichtig": Boolean
}

### SonstigeEinnahme

{
"antragstellerIds": [ String ],
"betragMonatlich": BigDecimal
}

### SonstigeVerbindlichkeit

{
Expand Down

0 comments on commit 846b901

Please sign in to comment.