Rocket.Chat.ReactNative/ios/Shared/RocketChat/API/Response.swift

19 lines
322 B
Swift

//
// Response.swift
// NotificationService
//
// Created by Djorkaeff Alexandre Vilela Pereira on 9/16/20.
// Copyright © 2020 Rocket.Chat. All rights reserved.
//
import Foundation
protocol Response: Decodable {
var success: Bool { get }
}
enum APIResponse<T: Response> {
case resource(T)
case error
}