ListTournamentRecordsAroundOwnerRequest constructor

ListTournamentRecordsAroundOwnerRequest({
  1. String? tournamentId,
  2. UInt32Value? limit,
  3. String? ownerId,
  4. 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;
}