/** * The `PowerAuthRecoveryActivationData` object contains information about recovery code and PUK, created * during the activation process. */ export interface PowerAuthRecoveryActivationData { /** * Contains recovery code. */ recoveryCode: string; /** * Contains PUK, valid with recovery code. */ puk: string; }