Class: JIRA::Avatar
- Inherits:
-
DynamicEntity
- Object
- Entity
- DynamicEntity
- JIRA::Avatar
- Defined in:
- lib/jiraSOAP/entities/avatar.rb
Overview
TODO:
find out what the id value of @owner relates to
Contains a base64 encoded avatar image and metadata about the avatar.
Instance Method Summary collapse
- #base64_data ⇒ String (also: #data)
- #mime_type ⇒ String (also: #content_type)
-
#owner ⇒ String
This seems to be an id ref to some other object.
-
#system ⇒ Boolean
Indicates if the image is the system default.
-
#type ⇒ String
The place where the avatar is used (e.g. 'project').
Methods inherited from DynamicEntity
Methods inherited from Entity
add_attribute, inherited, #initialize_with_xml, new_with_xml
Instance Method Details
#base64_data ⇒ String Also known as: data
25 |
# File 'lib/jiraSOAP/entities/avatar.rb', line 25 add_attribute :base64_data, 'base64Data', :content |
#mime_type ⇒ String Also known as: content_type
20 |
# File 'lib/jiraSOAP/entities/avatar.rb', line 20 add_attribute :mime_type, 'contentType', :content |
#owner ⇒ String
This seems to be an id ref to some other object
11 |
# File 'lib/jiraSOAP/entities/avatar.rb', line 11 add_attribute :owner, 'owner', :content |
#system ⇒ Boolean
Indicates if the image is the system default
33 |
# File 'lib/jiraSOAP/entities/avatar.rb', line 33 add_attribute :system, 'system', :to_boolean |
#type ⇒ String
The place where the avatar is used (e.g. 'project')
17 |
# File 'lib/jiraSOAP/entities/avatar.rb', line 17 add_attribute :type, 'type', :content |