RepeatWithDeliveryDate constructor
RepeatWithDeliveryDate({})
Implementation
factory RepeatWithDeliveryDate({
$core.String? uuid,
$core.String? userComment,
$core.String? referenceId,
$core.String? deliveryDate,
}) {
final result = create();
if (uuid != null) result.uuid = uuid;
if (userComment != null) result.userComment = userComment;
if (referenceId != null) result.referenceId = referenceId;
if (deliveryDate != null) result.deliveryDate = deliveryDate;
return result;
}