SetEmail sets the "email" record field value (usually available with Auth collections).
(email string)
| 9 | |
| 10 | // SetEmail sets the "email" record field value (usually available with Auth collections). |
| 11 | func (m *Record) SetEmail(email string) { |
| 12 | m.Set(FieldNameEmail, email) |
| 13 | } |
| 14 | |
| 15 | // Verified returns the "emailVisibility" record field value (usually available with Auth collections). |
| 16 | func (m *Record) EmailVisibility() bool { |