LockHashCompletedFeeReceipt constructor
LockHashCompletedFeeReceipt({
- int? version,
- ReceiptType? type,
- Mosaic? mosaic,
- Address? targetAddress,
Implementation
LockHashCompletedFeeReceipt({ int? version, ReceiptType? type, Mosaic? mosaic, Address? targetAddress}) {
this.version = version ?? 0;
this.type = type ?? LockHashCompletedFeeReceipt.RECEIPT_TYPE;
this.mosaic = mosaic ?? Mosaic();
this.targetAddress = targetAddress ?? Address();
}