Class AuthCert

java.lang.Object
org.stellar.sdk.xdr.AuthCert
All Implemented Interfaces:
XdrElement

public class AuthCert extends Object implements XdrElement
AuthCert's original definition in the XDR file is:
 struct AuthCert
 {
     Curve25519Public pubkey;
     uint64 expiration;
     Signature sig;
 };
 
  • Constructor Details

    • AuthCert

      public AuthCert()
    • AuthCert

      public AuthCert(Curve25519Public pubkey, Uint64 expiration, Signature sig)
      Creates a new AuthCert instance.
      Parameters:
      pubkey - the pubkey field value
      expiration - the expiration field value
      sig - the sig field value
  • Method Details