NamespaceExpiredReceipt constructor

NamespaceExpiredReceipt({
  1. int? version,
  2. ReceiptType? type,
  3. NamespaceId? artifactId,
})

Implementation

NamespaceExpiredReceipt(
    {int? version, ReceiptType? type, NamespaceId? artifactId}) {
  this.version = version ?? 0;
  this.type = type ?? NamespaceExpiredReceipt.RECEIPT_TYPE;
  this.artifactId = artifactId ?? NamespaceId();
}