AWSSNSListPhoneNumbersOptedOutResponse

Objective-C

@interface AWSSNSListPhoneNumbersOptedOutResponse

Swift

class AWSSNSListPhoneNumbersOptedOutResponse

The response from the ListPhoneNumbersOptedOut action.

  • A NextToken string is returned when you call the ListPhoneNumbersOptedOut action if additional records are available after the first page of results.

    Declaration

    Objective-C

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

    Swift

    var nextToken: String? { get set }
  • A list of phone numbers that are opted out of receiving SMS messages. The list is paginated, and each page can contain up to 100 phone numbers.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable phoneNumbers;

    Swift

    var phoneNumbers: [String]? { get set }