copyWith method

WebApiModulesSettingsAIKnowledgeScraperServiceLogAIKnowledgeScraperServiceLog copyWith({
  1. int? id,
  2. String? serviceName,
  3. String? serverName,
  4. DateTime? logDateTime,
  5. String? logMessage,
  6. String? dateStamp,
  7. String? auditNote,
  8. String? recordTitle,
  9. dynamic urlIdentifier,
  10. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  11. List<FwStandardDataFwCustomValue>? custom,
  12. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  13. FwStandardBusinessLogicFwBusinessLogic? original,
  14. List<FwStandardDataFwTranslatedValue>? translation,
  15. bool? hasImport,
  16. bool? hasDocuments,
  17. String? createdByUserId,
  18. String? createdByUserName,
  19. String? createdDateTime,
  20. String? modifiedByUserId,
  21. String? modifiedByUserName,
  22. String? modifiedDateTime,
})

Implementation

WebApiModulesSettingsAIKnowledgeScraperServiceLogAIKnowledgeScraperServiceLog
copyWith({
  int? id,
  String? serviceName,
  String? serverName,
  DateTime? logDateTime,
  String? logMessage,
  String? dateStamp,
  String? auditNote,
  String? recordTitle,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  bool? hasDocuments,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  return WebApiModulesSettingsAIKnowledgeScraperServiceLogAIKnowledgeScraperServiceLog(
    id: id ?? this.id,
    serviceName: serviceName ?? this.serviceName,
    serverName: serverName ?? this.serverName,
    logDateTime: logDateTime ?? this.logDateTime,
    logMessage: logMessage ?? this.logMessage,
    dateStamp: dateStamp ?? this.dateStamp,
    auditNote: auditNote ?? this.auditNote,
    recordTitle: recordTitle ?? this.recordTitle,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    hasDocuments: hasDocuments ?? this.hasDocuments,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}