Set the email address.
(mut self, email: impl Into<String>)
| 418 | |
| 419 | /// Set the email address. |
| 420 | pub fn email(mut self, email: impl Into<String>) -> Self { |
| 421 | self.email = Some(email.into()); |
| 422 | self |
| 423 | } |
| 424 | |
| 425 | /// Set the identity type. |
| 426 | pub fn identity_type(mut self, identity_type: IdentityType) -> Self { |
no outgoing calls