Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface ListUserAuthenticationMethodsOffsetPaginatedResponseContent

    interface ListUserAuthenticationMethodsOffsetPaginatedResponseContent {
        start?: number;
        limit?: number;
        total?: number;
        authenticators?: UserAuthenticationMethod[];
    }
    Index

    Properties

    start?: number

    Index of the starting record. Derived from the page and per_page parameters.

    limit?: number

    Maximum amount of records to return.

    total?: number

    Total number of pageable records.

    authenticators?: UserAuthenticationMethod[]

    The paginated authentication methods. Returned in this structure when include_totals is true.