MCEAttributesClient Class Reference

Inherits from NSObject
Declared in MCEAttributesClient.h
MCEAttributesClient.m

Overview

The MCEAttributesClient class can be used to update, or delete user attributes directly on the server.

Please note, this class is deprecated, please use MCEAttributesQueueManager instead.

– setUserAttributes:completion:

The setUserAttributes method replaces the user attributes on the server with the specified set of attribute key value pairs.

- (void)setUserAttributes:(NSDictionary *)attributes completion:(void ( ^ ) ( NSError *error ))callback

Discussion

The setUserAttributes method replaces the user attributes on the server with the specified set of attribute key value pairs.

Declared In

MCEAttributesClient.h

– updateUserAttributes:completion:

The updateUserAttributes method adds or updates the specified attributes to the user record on the server.

- (void)updateUserAttributes:(NSDictionary *)attributes completion:(void ( ^ ) ( NSError *error ))callback

Discussion

The updateUserAttributes method adds or updates the specified attributes to the user record on the server.

Declared In

MCEAttributesClient.h

– deleteUserAttributes:completion:

The deleteUserAttributes method removes the specified keys from the user record on the server.

- (void)deleteUserAttributes:(NSArray *)attributeKeys completion:(void ( ^ ) ( NSError *error ))callback

Discussion

The deleteUserAttributes method removes the specified keys from the user record on the server.

Declared In

MCEAttributesClient.h

– setChannelAttributes:completion:

The setChannelAttributes method replaces channel attributes on the server with the specified set of attribute key value pairs.

- (void)setChannelAttributes:(NSDictionary *)attributes completion:(void ( ^ ) ( NSError *error ))callback

Discussion

The setChannelAttributes method replaces channel attributes on the server with the specified set of attribute key value pairs.

Declared In

MCEAttributesClient.h

– updateChannelAttributes:completion:

The updateChannelAttributes method adds or updates the specified attributes to the channel record on the server.

- (void)updateChannelAttributes:(NSDictionary *)attributes completion:(void ( ^ ) ( NSError *error ))callback

Discussion

The updateChannelAttributes method adds or updates the specified attributes to the channel record on the server.

Declared In

MCEAttributesClient.h

– deleteChannelAttributes:completion:

The deleteChannelAttributes method removes the specified keys from the channel record on the server.

- (void)deleteChannelAttributes:(NSArray *)attributeKeys completion:(void ( ^ ) ( NSError *error ))callback

Discussion

The deleteChannelAttributes method removes the specified keys from the channel record on the server.

Declared In

MCEAttributesClient.h