SetPassword sets the "password" field.
(s string)
| 69 | |
| 70 | // SetPassword sets the "password" field. |
| 71 | func (sc *ShareCreate) SetPassword(s string) *ShareCreate { |
| 72 | sc.mutation.SetPassword(s) |
| 73 | return sc |
| 74 | } |
| 75 | |
| 76 | // SetNillablePassword sets the "password" field if the given value is not nil. |
| 77 | func (sc *ShareCreate) SetNillablePassword(s *string) *ShareCreate { |