NetverifyCountry


@interface NetverifyCountry : NSObject

NSObject that holds the country information and the available NetverifyDocuments for this country. It will only contain the countries with at least one available document. If a country is preselected in NetverifyConfiguration only one NetverifyCountry will be returned via netverifyUIController:didDetermineAvailableCountries:suggestedCountry:.

  • The ISO 3166-1 Alpha 3 code

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *_Nonnull code;

    Swift

    var code: String { get }
  • The localized country name according to the locale of the device.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *_Nonnull name;

    Swift

    var name: String { get }
  • Array contains NetverifyDocument ojects. Use this to display the available documents for this country. It will only contain the documents valid with the preselection in NetverifyConfiguration.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nonnull)
        NSArray<NetverifyDocument *> *documents;

    Swift

    var documents: [NetverifyDocument] { get }