AWSPinpointTargetingSendUsersMessageResponse

Objective-C

@interface AWSPinpointTargetingSendUsersMessageResponse

Swift

class AWSPinpointTargetingSendUsersMessageResponse

Provides information about which users and endpoints a message was sent to.

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 }
  • The unique identifier that was assigned to the message request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable requestId;

    Swift

    var requestId: String? { get set }
  • An object that indicates which endpoints the message was sent to, for each user. The object lists user IDs and, for each user ID, provides the endpoint IDs that the message was sent to. For each endpoint ID, it provides an EndpointMessageResult object.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary< NSString *, NSDictionary<NSString *, AWSPinpointTargetingEndpointMessageResult *> *> *_Nullable result;

    Swift

    var result: [String : [String : AWSPinpointTargetingEndpointMessageResult]]? { get set }