Makes the Creator property into an Optional<Cacheable<IUser, ulong>> type.
Checks to see if users are first contained in the cache, and does not
force the end user to download this User.
/// An optional <see cref="IUser"/> who created this emoji. An unspecified value only indicates that the creator was not supplied as part of the API response.
/// An optional <see cref="Cacheable{TEntity, TId}"/> <see cref="IUser"/> who created this emoji.
/// An unspecified value only indicates that the creator was not supplied as part of the API response.
/// </returns>
public Optional<IUser> Creator { get; }
public Optional<Cacheable<IUser, ulong>> Creator { get; }