class Fabricio::Model::Issue
This model represents an application build
Attributes
createdAt[R]
displayId[R]
externalId[R]
id[R]
impactedDevices[R]
latestSessionId[R]
occurrenceCount[R]
state[R]
subtitle[R]
title[R]
type[R]
Public Class Methods
new(attributes)
click to toggle source
Returns a Build
model object
@param attributes [Hash] @return [Fabricio::Model::Build]
# File lib/fabricio/models/issue.rb, line 23 def initialize(attributes) @id = attributes['id'] @displayId = attributes['displayId'] @externalId = attributes['externalId'] @title = attributes['title'] @subtitle = attributes['subtitle'] @createdAt = attributes['createdAt'] @type = attributes['type'] @state = attributes['state'] @latestSessionId = attributes['latestSessionId'] @occurrenceCount = attributes['occurrenceCount'] @impactedDevices = attributes['impactedDevices'] @json = attributes end