ListTournamentRecordsAroundOwnerRequest constructor
ListTournamentRecordsAroundOwnerRequest({
- String? tournamentId,
- UInt32Value? limit,
- String? ownerId,
- Int64Value? expiry,
Implementation
factory ListTournamentRecordsAroundOwnerRequest({
$core.String? tournamentId,
$1.UInt32Value? limit,
$core.String? ownerId,
$1.Int64Value? expiry,
}) {
final _result = create();
if (tournamentId != null) {
_result.tournamentId = tournamentId;
}
if (limit != null) {
_result.limit = limit;
}
if (ownerId != null) {
_result.ownerId = ownerId;
}
if (expiry != null) {
_result.expiry = expiry;
}
return _result;
}