Set And GetParameterAttribute

Hi,

I have query, How to declare/call SetParamterAttribute and GetParamterAttribute towards device from ACS ?

I guess using “declare” we can send SetParamterAttribute to device. But I am not clear on this?

How to send GetParamterAttribute from ACS to CPE?

What are you trying to accomplish?

References:

// 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)