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

22 lines
460 B
Swift

//
// Organization.swift
// Buildkite
//
// Created by Aaron Sky on 5/3/20.
// Copyright © 2020 Fangamer. All rights reserved.
//
import Foundation
public struct Organization: Codable, Equatable {
public var id: UUID
public var url: URL
public var webUrl: URL
public var name: String
public var slug: String
public var pipelinesUrl: URL
public var agentsUrl: URL
public var emojisUrl: URL
public var createdAt: URL
}