Set the email address.
(mut self, email: impl Into<String>)
| 450 | |
| 451 | /// Set the email address. |
| 452 | pub fn email(mut self, email: impl Into<String>) -> Self { |
| 453 | self.email = Some(email.into()); |
| 454 | self |
| 455 | } |
| 456 | |
| 457 | /// Set the identity type. |
| 458 | pub fn identity_type(mut self, identity_type: IdentityType) -> Self { |
no outgoing calls