Skip to content

Commit

Permalink
Merge pull request #2897 from dbluhm/fix/oob-record-their-service-update
Browse files Browse the repository at this point in the history
  • Loading branch information
swcurran committed Apr 17, 2024
2 parents e3670e6 + 216a34f commit ed4ccfe
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 ed4ccfe

Please sign in to comment.