EmailConfigurationType.fromJson constructor

EmailConfigurationType.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory EmailConfigurationType.fromJson(Map<String, dynamic> json) {
  return EmailConfigurationType(
    configurationSet: json['ConfigurationSet'] as String?,
    emailSendingAccount:
        (json['EmailSendingAccount'] as String?)?.toEmailSendingAccountType(),
    from: json['From'] as String?,
    replyToEmailAddress: json['ReplyToEmailAddress'] as String?,
    sourceArn: json['SourceArn'] as String?,
  );
}