interface AppKey {
    generated?: {
        privateKey: string;
    };
    jwk: JWK;
    sys: AppKeySys;
    delete(): Promise<void>;
    toPlainObject(): AppKeyProps;
}

Hierarchy (view full)

Properties

generated?: {
    privateKey: string;
}

If generated, private key is returned

Type declaration

  • privateKey: string

    Base64 PEM

jwk: JWK

JSON Web Key

sys: AppKeySys

System metadata

Methods

  • Deletes this object on the server.

    Returns Promise<void>

    Promise for the deletion. It contains no data, but the Promise error case should be handled.