Class: Jira4R::V2::RemoteCustomFieldValue

Inherits:
Object
  • Object
show all
Defined in:
lib/jira4r/v2/jiraService.rb

Overview

http://beans.soap.rpc.jira.atlassian.comRemoteCustomFieldValue

customfieldId - SOAP::SOAPString
key - SOAP::SOAPString
values - Jira4R::V2::ArrayOf_xsd_string

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(customfieldId = nil, key = nil, values = nil) ⇒ RemoteCustomFieldValue

Returns a new instance of RemoteCustomFieldValue.



451
452
453
454
455
# File 'lib/jira4r/v2/jiraService.rb', line 451

def initialize(customfieldId = nil, key = nil, values = nil)
  @customfieldId = customfieldId
  @key = key
  @values = values
end

Instance Attribute Details

#customfieldIdObject

Returns the value of attribute customfieldId.



447
448
449
# File 'lib/jira4r/v2/jiraService.rb', line 447

def customfieldId
  @customfieldId
end

#keyObject

Returns the value of attribute key.



448
449
450
# File 'lib/jira4r/v2/jiraService.rb', line 448

def key
  @key
end

#valuesObject

Returns the value of attribute values.



449
450
451
# File 'lib/jira4r/v2/jiraService.rb', line 449

def values
  @values
end