EMOobTransactionSigningRequest Protocol Reference

Conforms to EMOobIncomingMessage
EMOobMessageMeta
Declared in EMOobTransactionSigningRequest.h

Overview

Interface of a transaction signing request from the OOB server.

  locale required method

Gets the locale the message is designed for.

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

Return Value

The locale.

Availability

4.4

Declared In

EMOobTransactionSigningRequest.h

  mspFrame required method

Gets MSP frame as a secure string. It is hex encoded.

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

Return Value

The MSP frame.

Availability

4.4

Declared In

EMOobTransactionSigningRequest.h

  subject required method

Gets message subject

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

Return Value

The subject.

Availability

4.4

Declared In

EMOobTransactionSigningRequest.h

– createWithResponse:otp:meta: required method

Creates an outgoing response for this transaction signing request message.

- (id<EMOobTransactionSigningResponse>)createWithResponse:(EMOobTransactionSigningResponseValue)aResponse otp:(id<EMSecureString>)otp meta:(NSDictionary *)aMeta

Parameters

aResponse

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

otp

The OTP to send over to OOB server. Can be nilonly if user denied the transaction.

aMeta

The metadata for the message. Can be nil.

Return Value

The outgoing message ready to be sent.

Availability

4.4

Declared In

EMOobTransactionSigningRequest.h