EMOobTransactionVerifyRequest Protocol Reference

Conforms to EMOobIncomingMessage
EMOobMessageMeta
Declared in EMOobTransactionVerifyRequest.h

Overview

Interface of a transaction verify request from the OOB 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

EMOobTransactionVerifyRequest.h

  contentType required method

Gets the content type of the generic message.

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

Return Value

The content type.

Availability

3.0

Declared In

EMOobTransactionVerifyRequest.h

  content required method

Gets message content as a secure byte array.

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

Return Value

The content.

Availability

3.0

Declared In

EMOobTransactionVerifyRequest.h

  contentString required method

Gets message content in form of secure string.

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

Return Value

The content.

Availability

3.0

Declared In

EMOobTransactionVerifyRequest.h

  subject required method

Gets message subject

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

Return Value

The subject.

Availability

3.0

Declared In

EMOobTransactionVerifyRequest.h

– contentStringWithEncoding: required method

Gets message content in 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

EMOobTransactionVerifyRequest.h

– createWithResponse:meta: required method

Creates an outgoing response for this transaction verification request message.

- (id<EMOobTransactionVerifyResponse>)createWithResponse:(EMOobTransactionVerifyResponseValue)aResponse meta:(NSDictionary *)aMeta

Parameters

aResponse

The response to provide to the transaction. See enum EMOobTransactionVerifyResponseValue.

aMeta

The metadata for the message. Can be nil.

Return Value

The outgoing message ready to be sent.

Availability

3.0

Declared In

EMOobTransactionVerifyRequest.h