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.



452
453
454
455
456
# File 'lib/jira4r/v2/jira_service.rb', line 452

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.



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

def customfieldId
  @customfieldId
end

#keyObject

Returns the value of attribute key.



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

def key
  @key
end

#valuesObject

Returns the value of attribute values.



450
451
452
# File 'lib/jira4r/v2/jira_service.rb', line 450

def values
  @values
end