Git Product home page Git Product logo

Comments (3)

jdubey avatar jdubey commented on August 17, 2024

Quick fix:

struct Device {
    private let stateValue: String
    // availabilityValue type changed to Bool
    private let availabilityValue: Bool
    public let name: String
    public let UDID: String
}

from opensim.

nilsnilsnils avatar nilsnilsnils commented on August 17, 2024

Quick fix:

struct Device {
    private let stateValue: String
    // availabilityValue type changed to Bool
    private let availabilityValue: Bool
    public let name: String
    public let UDID: String
}

I used your code and the following to support both availability & isAvailable:

struct Device {
    private let stateValue: String
    private let availabilityValue: Bool?
    private let isAvailable: Bool?
    public let name: String
    public let UDID: String
}
        let availability: Bool? = availabilityValue ?? isAvailable
        
        switch availability {
            case .none:
                return .unavailable
            
            case .some(let value):
                return value ? Availability.available : Availability.unavailable
        }
    }
extension Device: Decodable {
    enum CodingKeys: String, CodingKey {
        case UDID = "udid"
        case name
        case stateValue = "state"
        case availabilityValue = "availability"
        case isAvailable
    }
}

from opensim.

Bunn avatar Bunn commented on August 17, 2024

Please update to the newest version 0.4.3, this should be fixed :)

from opensim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.