ReadAllTicketsRequest constructor

ReadAllTicketsRequest({
  1. String? chainId,
  2. String? boutiqueId,
  3. Timestamp? lastFetchTimestampUTC,
  4. bool? isDeleted,
})

Implementation

factory ReadAllTicketsRequest({
  $core.String? chainId,
  $core.String? boutiqueId,
  $19.Timestamp? lastFetchTimestampUTC,
  $core.bool? isDeleted,
}) {
  final result = create();
  if (chainId != null) {
    result.chainId = chainId;
  }
  if (boutiqueId != null) {
    result.boutiqueId = boutiqueId;
  }
  if (lastFetchTimestampUTC != null) {
    result.lastFetchTimestampUTC = lastFetchTimestampUTC;
  }
  if (isDeleted != null) {
    result.isDeleted = isDeleted;
  }
  return result;
}