Type alias AuthMFAListFactorsResponse<T>

AuthMFAListFactorsResponse<T>: RequestResult<{
    all: Prettify<Factor>[];
} & { [ K in T[number]]: Prettify<Factor<K, "verified">>[] }>

response of ListFactors, which should contain all the types of factors that are available, this ensures we always include all

Type Parameters

  • T extends typeof FactorTypes = typeof FactorTypes

Generated using TypeDoc