React Native Firebase
    Preparing search index...

    The user's full name, as shared by Sign in with Apple.

    Apple only shares this data on the user's first authorization for a given app; it is omitted from the ASAuthorizationAppleIDCredential on subsequent sign-ins, so it should be captured and forwarded on the first sign-in.

    interface AppleFullPersonName {
        familyName?: string | null;
        givenName?: string | null;
        middleName?: string | null;
        namePrefix?: string | null;
        nameSuffix?: string | null;
        nickname?: string | null;
    }
    Index

    Properties

    familyName?: string | null
    givenName?: string | null
    middleName?: string | null
    namePrefix?: string | null
    nameSuffix?: string | null
    nickname?: string | null