buildkite-swift/Sources/Buildkite/Models/Annotation.swift

26 lines
510 B
Swift

//
// Annotation.swift
// Buildkite
//
// Created by Aaron Sky on 5/3/20.
// Copyright © 2020 Fangamer. All rights reserved.
//
import Foundation
public struct Annotation: Codable, Equatable {
public enum Context: String, Codable {
case success
case info
case warning
case error
}
public var id: UUID
public var context: String
public var style: Context
public var bodyHtml: String
public var createdAt: Date
public var updatedAt: Date
}