Source Code added
This commit is contained in:
parent
800376eafd
commit
9efa9bc6dd
3912 changed files with 754770 additions and 2 deletions
|
|
@ -0,0 +1,26 @@
|
|||
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]';
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue