// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct LoggedOutResponse: Codable, Equatable {
    public var isLoggedOut: Bool

    public init(isLoggedOut: Bool) {
        self.isLoggedOut = isLoggedOut
    }
}
