NXMUser

Objective-C

@interface NXMUser : NSObject

Swift

class NXMUser : NSObject

The NXMUser class represents a User. A User identifies a unique Nexmo user in the context of a Nexmo Application.

  • A unique identifier for the user.

    Declaration

    Objective-C

    @property (nonatomic, copy, nonnull) NSString *uuid;

    Swift

    var uuid: String { get set }
  • The user’s name, username, unique within your Nexmo Application.

    Declaration

    Objective-C

    @property (nonatomic, copy, nonnull) NSString *name;

    Swift

    var name: String { get set }
  • The user’s display name.

    Declaration

    Objective-C

    @property (nonatomic, copy, nonnull) NSString *displayName;

    Swift

    var displayName: String { get set }
  • The user’s image URL.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *imageUrl;

    Swift

    var imageUrl: String? { get set }