57557: Added leftPlace and rightPlace to Relationship + JSDocs

This commit is contained in:
Kristof De Langhe
2018-11-26 11:03:49 +01:00
parent 19033e638a
commit 1ba7d1e29d
2 changed files with 22 additions and 0 deletions

View File

@@ -30,6 +30,18 @@ export class NormalizedRelationship extends NormalizedObject {
@autoserialize
rightId: string;
/**
* The place of the Entity to the left side of this Relationship
*/
@autoserialize
leftPlace: number;
/**
* The place of the Entity to the right side of this Relationship
*/
@autoserialize
rightPlace: number;
/**
* The type of Relationship
*/

View File

@@ -35,6 +35,16 @@ export class Relationship implements CacheableObject {
*/
rightId: string;
/**
* The place of the Entity to the left side of this Relationship
*/
leftPlace: number;
/**
* The place of the Entity to the right side of this Relationship
*/
rightPlace: number;
/**
* The type of Relationship
*/