SetUploadSessionID sets the "upload_session_id" field.
(u uuid.UUID)
| 123 | |
| 124 | // SetUploadSessionID sets the "upload_session_id" field. |
| 125 | func (ec *EntityCreate) SetUploadSessionID(u uuid.UUID) *EntityCreate { |
| 126 | ec.mutation.SetUploadSessionID(u) |
| 127 | return ec |
| 128 | } |
| 129 | |
| 130 | // SetNillableUploadSessionID sets the "upload_session_id" field if the given value is not nil. |
| 131 | func (ec *EntityCreate) SetNillableUploadSessionID(u *uuid.UUID) *EntityCreate { |
no outgoing calls
no test coverage detected