2019-10-18 23:21:02 +02:00
|
|
|
//
|
|
|
|
// FeedlyStreamIds.swift
|
|
|
|
// Account
|
|
|
|
//
|
|
|
|
// Created by Kiel Gillard on 18/10/19.
|
|
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
struct FeedlyStreamIds: Decodable {
|
2020-01-17 06:47:21 +01:00
|
|
|
let continuation: String?
|
|
|
|
let ids: [String]
|
2019-10-18 23:21:02 +02:00
|
|
|
|
|
|
|
var isStreamEnd: Bool {
|
|
|
|
return continuation == nil
|
|
|
|
}
|
|
|
|
}
|