You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-07 06:16:05 +02:00
27 lines
700 B
Dart
27 lines
700 B
Dart
![]() |
class SessionCreateResponse {
|
||
|
final String createdAt;
|
||
|
final bool current;
|
||
|
final String deviceOS;
|
||
|
final String deviceType;
|
||
|
final String? expiresAt;
|
||
|
final String id;
|
||
|
final String token;
|
||
|
final String updatedAt;
|
||
|
|
||
|
const SessionCreateResponse({
|
||
|
required this.createdAt,
|
||
|
required this.current,
|
||
|
required this.deviceOS,
|
||
|
required this.deviceType,
|
||
|
this.expiresAt,
|
||
|
required this.id,
|
||
|
required this.token,
|
||
|
required this.updatedAt,
|
||
|
});
|
||
|
|
||
|
@override
|
||
|
String toString() {
|
||
|
return 'SessionCreateResponse[createdAt=$createdAt, current=$current, deviceOS=$deviceOS, deviceType=$deviceType, expiresAt=$expiresAt, id=$id, token=$token, updatedAt=$updatedAt]';
|
||
|
}
|
||
|
}
|