interface AppSigningSecret {
    redactedValue: string;
    sys: AppSigningSecretSys;
    delete(): Promise<void>;
    toPlainObject(): AppSigningSecretProps;
}

Hierarchy (view full)

Properties

redactedValue: string

The last four characters of the signing secret

sys: AppSigningSecretSys

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.