MNFUpcomingComment

Objective-C

@interface MNFUpcomingComment : MNFObject

Swift

class MNFUpcomingComment : MNFObject

The MNFUpcomingComment class contains information on a comment made to an upcoming transaction.

Immutable properties

  • The date the comment was created.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSDate *_Nonnull created;

    Swift

    var created: Date { get }
  • The date the comment was modified.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSDate *_Nonnull modified;

    Swift

    var modified: Date { get }
  • The actual comment.

    Declaration

    Objective-C

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

    Swift

    var comment: String { get }