Input$UpdateProductRatingInput constructor
Input$UpdateProductRatingInput({})
Implementation
factory Input$UpdateProductRatingInput({
int? mark,
String? comment,
String? user,
String? product,
String? reviewType,
}) =>
Input$UpdateProductRatingInput._({
if (mark != null) r'mark': mark,
if (comment != null) r'comment': comment,
if (user != null) r'user': user,
if (product != null) r'product': product,
if (reviewType != null) r'reviewType': reviewType,
});