GetPerformanceVwapRequest constructor
GetPerformanceVwapRequest({
- String? fromDate,
- String? toDate,
- String? lpId,
- CurrencyPair? pair,
Implementation
factory GetPerformanceVwapRequest({
$core.String? fromDate,
$core.String? toDate,
$core.String? lpId,
CurrencyPair? pair,
}) {
final $result = create();
if (fromDate != null) {
$result.fromDate = fromDate;
}
if (toDate != null) {
$result.toDate = toDate;
}
if (lpId != null) {
$result.lpId = lpId;
}
if (pair != null) {
$result.pair = pair;
}
return $result;
}