Skip to content

Instantly share code, notes, and snippets.

View AndrewSB's full-sized avatar

Andrew Breckenridge AndrewSB

View GitHub Profile
// Assuming you have a class called API for all your API stuff
extension API {
enum PaidStatus: String {
case Paid
case Scheduled
}
}
if let paidStatus = API.PaidStatus(rawValue: paystubData.status.capitilzedString) {
switch paidStatus {