Warning

This feature is available in the Full MapKit SDK version

MMKSearchCurrencyExchangeType

@interface MMKSearchCurrencyExchangeType : NSObject

Single currency exchange prices.

Summary

Class methods

+ (nonnull MMKSearchCurrencyExchangeType *)currencyExchangeTypeWithName:(nullable NSString *)name
                                                                    buy:(nullable MMKTaxiMoney *)buy
                                                                   sell:(nullable MMKTaxiMoney *)sell;

Properties

@property (nonatomic, readonly, nullable) NSString *name;
ISO-4217 currency name, for example "USD" or "RUB" or "EUR"

@property (nonatomic, readonly, nullable) MMKTaxiMoney *buy;
Buy rate

@property (nonatomic, readonly, nullable) MMKTaxiMoney *sell;
Sell rate

Class methods

currencyExchangeTypeWithName:buy:sell:

+ (nonnull MMKSearchCurrencyExchangeType *)currencyExchangeTypeWithName:(nullable NSString *)name
                                                                    buy:(nullable MMKTaxiMoney *)buy
                                                                   sell:(nullable MMKTaxiMoney *)sell;


Properties

name

@property (nonatomic, readonly, nullable) NSString *name;

ISO-4217 currency name, for example "USD" or "RUB" or "EUR".

Optional field, can be nil.


buy

@property (nonatomic, readonly, nullable) MMKTaxiMoney *buy;

Buy rate.

Optional field, can be nil.


sell

@property (nonatomic, readonly, nullable) MMKTaxiMoney *sell;

Sell rate.

Optional field, can be nil.