1import 'package:freezed_annotation/freezed_annotation.dart';
2
3part 'update_profile_request.freezed.dart';
4part 'update_profile_request.g.dart';
5
6/// Request model for updating an actor's profile information.
7///
8/// [displayName] - The display name (optional).
9/// [description] - The profile description (optional).
10@freezed
11class UpdateProfileRequest with _$UpdateProfileRequest {
12 const factory UpdateProfileRequest({String? displayName, String? description}) =
13 _UpdateProfileRequest;
14
15 factory UpdateProfileRequest.fromJson(Map<String, dynamic> json) =>
16 _$UpdateProfileRequestFromJson(json);
17}