MNFAccountCategory

Objective-C

@interface MNFAccountCategory : MNFObject

Swift

class MNFAccountCategory : MNFObject

The MNFAccountType class represents account types.

An account type should not be initialized directly but fetched from the server through MNFAccount.

Immutable properties

  • @abstract The name of the account type.

    Declaration

    Objective-C

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

    Swift

    var name: String { get }
  • The id of the parent of the account type category.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSNumber *_Nonnull parentId;

    Swift

    var parentId: NSNumber { get }
  • The name of the parent type category.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull parentName;

    Swift

    var parentName: String { get }