fr.bmartel.bboxapi.router.model.Acl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboxapi-router Show documentation
Show all versions of bboxapi-router Show documentation
Java/Android client for Bbox Router API
The newest version!
package fr.bmartel.bboxapi.router.model
data class Acl(
val acl: WirelessRules? = null
)
data class WirelessRules(
val enable: Int? = null,
val rules: List? = null
)
data class Rules(
val id: Int? = null,
val enable: Int? = null,
val name: String? = null,
val macaddress: String? = null
)
//only used in the API client
data class MacFilterRule(
val enable: Boolean,
val macaddress: String,
val ip: String
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy