> ## Documentation Index
> Fetch the complete documentation index at: https://primer.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# provideNolPayLinkedCardsComponent

This method allows you get a new instance of `NolPayLinkedCardsComponent` to manage linked cards for Nol Pay.

```kotlin KOTLIN theme={"dark"}
fun provideNolPayLinkedCardsComponent(): NolPayLinkedCardsComponent
```

## Returns

An instance of `NolPayLinkedCardsComponent`.

<Expandable title="NolPayLinkedCardsComponent" defaultOpen>
  <ResponseField name="suspend fun getLinkedCards(mobileNumber: String): Result<List<PrimerNolPaymentCard>>">
    Retrieves a list of linked nol Pay cards associated with the specified mobile number and phone
    country dialing code.

    <Expandable title="Parameters" defaultOpen>
      <ResponseField name="mobileNumber" type="String">
        The mobile number in [E.164](https://www.twilio.com/docs/glossary/what-e164) format for which linked cards are to be retrieved.
      </ResponseField>
    </Expandable>

    Returns [Result](https://kotlinlang.org/api-reference/latest/jvm/stdlib/kotlin/-result/) containing either a list of linked
    `PrimerNolPaymentCard` objects on success or an error on failure.

    <Expandable title="PrimerNolPaymentCard">
      <ResponseField name="cardNumber" type="String">
        The Nol card number.
      </ResponseField>
    </Expandable>

    In case of error, as part of `Result` object, SDK will return `NolPaySdkException` if an error occurs while fetching the linked cards.
  </ResponseField>
</Expandable>
