Skip to content

Commit

Permalink
fix: oob record their_service should be updatable
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bluhm <dbluhm@pm.me>
  • Loading branch information
dbluhm committed Apr 16, 2024
1 parent e3670e6 commit 216a34f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ def their_service(self) -> Optional[ServiceDecorator]:
"""Accessor; get deserialized view."""
return None if self._their_service is None else self._their_service.de

@their_service.setter
def their_service(self, value: Union[ServiceDecorator, Mapping[str, Any]]):
"""Setter; store de/serialized vies."""
self._their_service = ServiceDecorator.serde(value)

@property
def record_value(self) -> dict:
"""Accessor for the JSON record value generated for this invitation."""
Expand Down

0 comments on commit 216a34f

Please sign in to comment.