Class: Jira4R::V2::RemoteAttachment
- Inherits:
-
AbstractRemoteEntity
- Object
- AbstractRemoteEntity
- Jira4R::V2::RemoteAttachment
- Defined in:
- lib/jira4r/v2/jiraService.rb
Overview
http://beans.soap.rpc.jira.atlassian.comRemoteAttachment
id - SOAP::SOAPString
- SOAP::SOAPString
created - SOAP::SOAPDateTime
filename - SOAP::SOAPString
filesize - SOAP::SOAPLong
mimetype - SOAP::SOAPString
Instance Attribute Summary collapse
-
#author ⇒ Object
Returns the value of attribute author.
-
#created ⇒ Object
Returns the value of attribute created.
-
#filename ⇒ Object
Returns the value of attribute filename.
-
#filesize ⇒ Object
Returns the value of attribute filesize.
-
#id ⇒ Object
Returns the value of attribute id.
-
#mimetype ⇒ Object
Returns the value of attribute mimetype.
Instance Method Summary collapse
-
#initialize(id = nil, author = nil, created = nil, filename = nil, filesize = nil, mimetype = nil) ⇒ RemoteAttachment
constructor
A new instance of RemoteAttachment.
Constructor Details
#initialize(id = nil, author = nil, created = nil, filename = nil, filesize = nil, mimetype = nil) ⇒ RemoteAttachment
Returns a new instance of RemoteAttachment.
432 433 434 435 436 437 438 439 |
# File 'lib/jira4r/v2/jiraService.rb', line 432 def initialize(id = nil, = nil, created = nil, filename = nil, filesize = nil, mimetype = nil) @id = id @author = @created = created @filename = filename @filesize = filesize @mimetype = mimetype end |
Instance Attribute Details
#author ⇒ Object
Returns the value of attribute author.
426 427 428 |
# File 'lib/jira4r/v2/jiraService.rb', line 426 def @author end |
#created ⇒ Object
Returns the value of attribute created.
427 428 429 |
# File 'lib/jira4r/v2/jiraService.rb', line 427 def created @created end |
#filename ⇒ Object
Returns the value of attribute filename.
428 429 430 |
# File 'lib/jira4r/v2/jiraService.rb', line 428 def filename @filename end |
#filesize ⇒ Object
Returns the value of attribute filesize.
429 430 431 |
# File 'lib/jira4r/v2/jiraService.rb', line 429 def filesize @filesize end |
#id ⇒ Object
Returns the value of attribute id.
425 426 427 |
# File 'lib/jira4r/v2/jiraService.rb', line 425 def id @id end |
#mimetype ⇒ Object
Returns the value of attribute mimetype.
430 431 432 |
# File 'lib/jira4r/v2/jiraService.rb', line 430 def mimetype @mimetype end |