import 'package:freezed_annotation/freezed_annotation.dart'; part 'update_profile_request.freezed.dart'; part 'update_profile_request.g.dart'; /// Request model for updating an actor's profile information. /// /// [displayName] - The display name (optional). /// [description] - The profile description (optional). @freezed class UpdateProfileRequest with _$UpdateProfileRequest { const factory UpdateProfileRequest({String? displayName, String? description}) = _UpdateProfileRequest; factory UpdateProfileRequest.fromJson(Map json) => _$UpdateProfileRequestFromJson(json); }