-
Notifications
You must be signed in to change notification settings - Fork 23
Added organizationUnit property in OrderProduct entity #633
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| get organizationUnitRef(): string | undefined { | ||
| return this.#organizationUnitRef; | ||
| } | ||
| get name(): string | undefined { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not very important but an empty line is missing here.
| public toJSON(): OrganizationUnitType { | ||
| return { | ||
| [OrganizationUnitTypeFields.COLUMN_ORGANIZATION_UNIT_REF]: this | ||
| .organizationUnitRef, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to split this line.
| get priceBand(): PriceBand | undefined { | ||
| return this.#priceBand; | ||
| } | ||
| get organizationUnit(): OrganizationUnit | undefined { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing empty line here too.
No description provided.