module Gitlab::Client::Avatar

def avatar(options = {})

Returns:
  • (Gitlab::ObjectifiedHash) -

Options Hash: (**options)
  • :size(optional) (Integer) -- Single pixel dimension (since images are squares). Only used for avatar lookups at Gravatar or at the configured Libravatar server.
  • :email(required) (String) -- Public email address of the user.

Parameters:
  • options (Hash) -- A customizable set of options.
def avatar(options = {})
  get('/avatar', query: options)
end