setRecipient abstract method

Future<SmsSettingsV1?> setRecipient(
  1. String? correlationId,
  2. String recipientId,
  3. String name,
  4. String phone,
  5. String language,
)

Sets a recipient info into sms settings.

  • correlation_id (optional) transaction id to trace execution through call chain.
  • recipientId a recipient id of settings to be retrieved.
  • name a recipient name of settings to be set.
  • phone a recipient phone of settings to be set.
  • language a recipient language of settings to be set. Return (optional) Future that receives updated sms settings Throws error.

Implementation

Future<SmsSettingsV1?> setRecipient(String? correlationId, String recipientId,
    String name, String phone, String language);