EMOobUserToProviderMessage Protocol Reference

Conforms to EMOobMessageMeta
EMOobOutgoingMessage
Declared in EMOobUserToProviderMessage.h

Overview

Interface of an outgoing user message to the server.

  locale required method

Gets the locale the message content is for.

@property (nonatomic, copy, readonly) NSString *locale

Return Value

The locale.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  contentType required method

Gets the content type..

@property (nonatomic, copy, readonly) NSString *contentType

Return Value

The content type.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  content required method

Gets the message content as a secure byte array.

@property (nonatomic, strong, readonly) id<EMSecureByteArray> content

Return Value

The content.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  contentString required method

Gets the message content in form of secure string.

@property (nonatomic, strong, readonly) id<EMSecureString> contentString

Return Value

The content.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  subject required method

Gets the message subject.

@property (nonatomic, copy, readonly) id<EMSecureString> subject

Return Value

The subject.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  createTime required method

Gets the creation date.

@property (nonatomic, assign, readonly) NSTimeInterval createTime

Return Value

The creation date.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  from required method

Gets the originator.

@property (nonatomic, copy, readonly) NSString *from

Return Value

The originator.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  to required method

Gets the recipient.

@property (nonatomic, copy, readonly) NSString *to

Return Value

The recipient.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  replyTo required method

Gets the response recipient.

@property (nonatomic, copy, readonly) NSString *replyTo

Return Value

The response recipient.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  threadId required method

Gets the thread identifier.

@property (nonatomic, copy, readonly) NSString *threadId

Return Value

The thread identifier.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

  attachments required method

Gets the attachments.

@property (nonatomic, copy, readonly) NSArray *attachments

Return Value

The attachments.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h

– contentStringWithEncoding: required method

Gets message content in the form of secure string in a specific encoding format.

- (id<EMSecureString>)contentStringWithEncoding:(NSStringEncoding)encoding

Parameters

encoding

A string encoding

Return Value

The content.

Availability

3.0

Declared In

EMOobUserToProviderMessage.h