Method: Bio::BaseSpace::User#initialize
- Defined in:
- lib/basespace/model/user.rb
#initialize ⇒ User
Create a new User instance.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/basespace/model/user.rb', line 24 def initialize @swagger_types = { 'Name' => 'str', 'Email' => 'str', 'DateLastActive' => 'datetime', 'GravatarUrl' => 'str', 'HrefProjects' => 'str', 'DateCreated' => 'datetime', 'Id' => 'str', 'Href' => 'str', 'HrefRuns' => 'str', } @attributes = { 'Name' => nil, # str 'Email' => nil, # str 'DateLastActive' => nil, # datetime 'GravatarUrl' => nil, # str 'HrefProjects' => nil, # str 'DateCreated' => nil, # datetime 'Id' => nil, # str 'Href' => nil, # str 'HrefRuns' => nil, # str } end |