Skip to content
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

fix: oob record their_service should be updatable #2897

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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