AWSPinpointTargetingMessageResponse
Objective-C
@interface AWSPinpointTargetingMessageResponse
Swift
class AWSPinpointTargetingMessageResponse
Provides information about the results of a request to send a message to an endpoint address.
Required parameters: [ApplicationId]
-
The unique identifier for the application that was used to send the message.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable applicationId;
Swift
var applicationId: String? { get set }
-
A map that contains a multipart response for each address that the message was sent to. In the map, the endpoint ID is the key and the result is the value.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, AWSPinpointTargetingEndpointMessageResult *> *_Nullable endpointResult;
Swift
var endpointResult: [String : AWSPinpointTargetingEndpointMessageResult]? { get set }
-
The identifier for the original request that the message was delivered for.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable requestId;
Swift
var requestId: String? { get set }
-
A map that contains a multipart response for each address (email address, phone number, or push notification token) that the message was sent to. In the map, the address is the key and the result is the value.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, AWSPinpointTargetingMessageResult *> *_Nullable result;
Swift
var result: [String : AWSPinpointTargetingMessageResult]? { get set }