INNER CODE UNIT · Python
update_author_name
phalt/django-api-domains · example_domain/interfaces.py:24
def update_author_name(
*,
author_name: Str,
author_id: uuid.UUID,
) -> None:
AuthorAPI.update_author_name(
id=author_id,
name=author_name,
)