(className: string, objectId: string)
| 3 | objectId: string; |
| 4 | |
| 5 | constructor(className: string, objectId: string) { |
| 6 | this.className = className; |
| 7 | this.objectId = objectId; |
| 8 | } |
| 9 | toString(): string { |
| 10 | return this.className + ':' + this.objectId; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected