SetEmailVisibility sets the "emailVisibility" record field value (usually available with Auth collections).
(visible bool)
| 19 | |
| 20 | // SetEmailVisibility sets the "emailVisibility" record field value (usually available with Auth collections). |
| 21 | func (m *Record) SetEmailVisibility(visible bool) { |
| 22 | m.Set(FieldNameEmailVisibility, visible) |
| 23 | } |
| 24 | |
| 25 | // Verified returns the "verified" record field value (usually available with Auth collections). |
| 26 | func (m *Record) Verified() bool { |