LanguageData

@interface LanguageData : AbstractData

Class to store the language data

  • Language Preferences: As defined by ISO639, should represent language used to encode TAGS 01-02

    Declaration

    Objective-C

    @property (readwrite, retain, atomic, nullable) NSString *languagePreference;

    Swift

    var languagePreference: String? { get set }
  • Alternate Merchant Name: Should be the “doing business as” name for the merchant in merchant’s local language.

    Declaration

    Objective-C

    @property (readwrite, retain, atomic, nullable) NSString *alternateMerchantName;

    Swift

    var alternateMerchantName: String? { get set }
  • Alternate Merchant City: Should be the city in which the merchant transacts in the merchant’s local language.

    Declaration

    Objective-C

    @property (readwrite, retain, atomic, nullable) NSString *alternateMerchantCity;

    Swift

    var alternateMerchantCity: String? { get set }