SetNillableGUID sets the "guid" field if the given value is not nil.
(s *string)
| 428 | |
| 429 | // SetNillableGUID sets the "guid" field if the given value is not nil. |
| 430 | func (ocuo *OAuthClientUpdateOne) SetNillableGUID(s *string) *OAuthClientUpdateOne { |
| 431 | if s != nil { |
| 432 | ocuo.SetGUID(*s) |
| 433 | } |
| 434 | return ocuo |
| 435 | } |
| 436 | |
| 437 | // SetSecret sets the "secret" field. |
| 438 | func (ocuo *OAuthClientUpdateOne) SetSecret(s string) *OAuthClientUpdateOne { |