Class: Fizzy::Types::ActivityParticulars

Inherits:
Data
  • Object
show all
Defined in:
lib/fizzy/generated/types.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#assignee_idsObject (readonly)

Returns the value of attribute assignee_ids

Returns:

  • (Object)

    the current value of assignee_ids



121
122
123
# File 'lib/fizzy/generated/types.rb', line 121

def assignee_ids
  @assignee_ids
end

#columnObject (readonly)

Returns the value of attribute column

Returns:

  • (Object)

    the current value of column



121
122
123
# File 'lib/fizzy/generated/types.rb', line 121

def column
  @column
end

#new_boardObject (readonly)

Returns the value of attribute new_board

Returns:

  • (Object)

    the current value of new_board



121
122
123
# File 'lib/fizzy/generated/types.rb', line 121

def new_board
  @new_board
end

#new_titleObject (readonly)

Returns the value of attribute new_title

Returns:

  • (Object)

    the current value of new_title



121
122
123
# File 'lib/fizzy/generated/types.rb', line 121

def new_title
  @new_title
end

#old_boardObject (readonly)

Returns the value of attribute old_board

Returns:

  • (Object)

    the current value of old_board



121
122
123
# File 'lib/fizzy/generated/types.rb', line 121

def old_board
  @old_board
end

#old_titleObject (readonly)

Returns the value of attribute old_title

Returns:

  • (Object)

    the current value of old_title



121
122
123
# File 'lib/fizzy/generated/types.rb', line 121

def old_title
  @old_title
end

Class Method Details

.from_json(data) ⇒ Object

Parameters:

  • data (Hash)

    raw JSON response



123
124
125
126
127
128
129
130
131
132
# File 'lib/fizzy/generated/types.rb', line 123

def self.from_json(data)
  new(
    assignee_ids: data["assignee_ids"],
    old_board: data["old_board"],
    new_board: data["new_board"],
    old_title: data["old_title"],
    new_title: data["new_title"],
    column: data["column"]
  )
end