class Springcm::AppliedAttributeSetItem

Attributes

group[R]
name[R]
subject[R]

Public Class Methods

new(data, subject, group, set, client) click to toggle source
Calls superclass method
# File lib/springcm-sdk/applied_attribute_set_item.rb, line 10
def initialize(data, subject, group, set, client)
  @subject = subject
  @group = group
  super(data, client)
end

Public Instance Methods

field(field_name) click to toggle source
# File lib/springcm-sdk/applied_attribute_set_item.rb, line 16
def field(field_name)
  # Validate name not one of the restricted attribute names:
  # RepeatingAttribute, AttributeType
  field_data = raw[field_name]
  AppliedAttributeField.new(field_data, field_name, subject, group, set, @client)
end