MNFAccountHistoryEntry
Objective-C
@interface MNFAccountHistoryEntry : MNFObject
Swift
class MNFAccountHistoryEntry : MNFObject
The MNFAccountHistoryEntry class represents account history data.
An account history entry should not be initialized directly but rather fetched from the server through MNFAccount.
-
@abstract The account id of the history entry.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSNumber *_Nonnull accountId;
Swift
var accountId: NSNumber { get }
-
@abstract The balance of the history entry.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSNumber *_Nonnull balance;
Swift
var balance: NSNumber { get }
-
The balance of the history entry in the users currency.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSNumber *_Nonnull balanceInUserCurrency;
Swift
var balanceInUserCurrency: NSNumber { get }
-
@abstract The date of the history entry.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSDate *_Nonnull balanceDate;
Swift
var balanceDate: Date { get }
-
@abstract Whether the entry has been generated with default values.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSNumber *_Nonnull isDefault;
Swift
var isDefault: NSNumber { get }