class Attio::APIResource

def changed_attributes

Returns:
  • (Hash) - Hash of changed attributes with their current values
def changed_attributes
  @changed_attributes.each_with_object({}) do |key, hash|
    hash[key] = @attributes[key]
  end
end