LogbookLogConciseSLC constructor
LogbookLogConciseSLC({})
Implementation
factory LogbookLogConciseSLC({
$fixnum.Int64? id,
$core.bool? isActive,
$fixnum.Int64? timestamp,
$core.String? refUuid,
STANDARD_LIFECYCLE_STATUS? operation,
$core.String? username,
$core.String? name,
$fixnum.Int64? userId,
$core.String? appComment,
$core.String? userComment,
}) {
final result = create();
if (id != null) result.id = id;
if (isActive != null) result.isActive = isActive;
if (timestamp != null) result.timestamp = timestamp;
if (refUuid != null) result.refUuid = refUuid;
if (operation != null) result.operation = operation;
if (username != null) result.username = username;
if (name != null) result.name = name;
if (userId != null) result.userId = userId;
if (appComment != null) result.appComment = appComment;
if (userComment != null) result.userComment = userComment;
return result;
}