DBCONTACTSDeleteManualContactsArg

Objective-C

@interface DBCONTACTSDeleteManualContactsArg
    : NSObject <DBSerializable, NSCopying>

Swift

class DBCONTACTSDeleteManualContactsArg : NSObject, DBSerializable, NSCopying

The DeleteManualContactsArg struct.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • List of manually added contacts to be deleted.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSArray<NSString *> *_Nonnull emailAddresses;

    Swift

    var emailAddresses: [String] { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithEmailAddresses:
        (nonnull NSArray<NSString *> *)emailAddresses;

    Swift

    init(emailAddresses: [String])

    Parameters

    emailAddresses

    List of manually added contacts to be deleted.

    Return Value

    An initialized instance.