This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"pricePerShareInEuro": 500, | |
"noticePeriodInYears": 4, | |
"estimatedDividendPerYear": "1 - 3%", | |
"products": [ | |
{ | |
"name": "Junges Girokonto", | |
"priceGlsContribution": { | |
"billingPeriod": "yearly", | |
"pricePerBillingPeriodInEuro": 12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User extends Document { | |
final Name name; | |
final Address address; | |
final Gender gender; | |
final Birthday birthday; | |
final Email email; | |
final Weight weight; | |
final Length height; | |
final bool _hasFinishedSignUp; | |
final Iterable<Bike> myBikes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abstract class User extends DataModel { | |
final Name name; | |
final Address address; | |
final Gender gender; | |
final Birthday birthDay; | |
final Email email; | |
final Weight weight; | |
final Length height; | |
final bool hasFinishedSignUp; |