Class: Jira4R::V2::RemoteCustomFieldValue

Inherits:
Object
  • Object
show all
Defined in:
lib/jira4r/v2/jira_service.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.



483
484
485
486
487
# File 'lib/jira4r/v2/jira_service.rb', line 483

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.



479
480
481
# File 'lib/jira4r/v2/jira_service.rb', line 479

def customfieldId
  @customfieldId
end

#keyObject

Returns the value of attribute key.



480
481
482
# File 'lib/jira4r/v2/jira_service.rb', line 480

def key
  @key
end

#valuesObject

Returns the value of attribute values.



481
482
483
# File 'lib/jira4r/v2/jira_service.rb', line 481

def values
  @values
end