toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'user_id'] = this.userId;
json[r'actor'] = this.actor;
json[r'expires_in_seconds'] = this.expiresInSeconds;
json[r'session_max_duration_in_seconds'] = this.sessionMaxDurationInSeconds;
return json;
}