decode static method

Implementation

static XdrHashIDPreimageSorobanAuthorization decode(
    XdrDataInputStream stream) {
  XdrHash networkID = XdrHash.decode(stream);
  XdrInt64 nonce = XdrInt64.decode(stream);
  XdrUint32 signatureExpirationLedger = XdrUint32.decode(stream);
  XdrSorobanAuthorizedInvocation invocation =
      XdrSorobanAuthorizedInvocation.decode(stream);
  return XdrHashIDPreimageSorobanAuthorization(
      networkID, nonce, signatureExpirationLedger, invocation);
}