copyWith method

WebApiModulesSettingsBillingCycleEventBillingCycleEvent copyWith({
  1. String? billingCycleId,
  2. String? billingCycleEventId,
  3. String? billingCycleEvent,
  4. int? billPercent,
  5. int? orderBy,
  6. bool? actualRevenue,
  7. String? dateStamp,
  8. String? auditNote,
  9. String? recordTitle,
  10. dynamic urlIdentifier,
  11. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  12. List<FwStandardDataFwCustomValue>? custom,
  13. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  14. FwStandardBusinessLogicFwBusinessLogic? original,
  15. List<FwStandardDataFwTranslatedValue>? translation,
  16. bool? hasImport,
  17. bool? hasDocuments,
  18. String? createdByUserId,
  19. String? createdByUserName,
  20. String? createdDateTime,
  21. String? modifiedByUserId,
  22. String? modifiedByUserName,
  23. String? modifiedDateTime,
})

Implementation

WebApiModulesSettingsBillingCycleEventBillingCycleEvent copyWith({
  String? billingCycleId,
  String? billingCycleEventId,
  String? billingCycleEvent,
  int? billPercent,
  int? orderBy,
  bool? actualRevenue,
  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 WebApiModulesSettingsBillingCycleEventBillingCycleEvent(
    billingCycleId: billingCycleId ?? this.billingCycleId,
    billingCycleEventId: billingCycleEventId ?? this.billingCycleEventId,
    billingCycleEvent: billingCycleEvent ?? this.billingCycleEvent,
    billPercent: billPercent ?? this.billPercent,
    orderBy: orderBy ?? this.orderBy,
    actualRevenue: actualRevenue ?? this.actualRevenue,
    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,
  );
}