// GetParameterAttributes example #1 #########
const now = Date.now()
let arg1 = "InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID"
let arg2 = {notification: now}
declare(arg1, arg2)
// GetParameterAttributes example #2 #########
const now = Date.now()
let arg1 = "InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID"
let arg2 = {accessList: now}
declare(arg1, arg2)
// SetParameterAttributes example #1 #########
let arg1 = "InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID"
let arg2 = null
let arg3 = {notification: 2}
declare(arg1, arg2, arg3)