input_credentials_new property
InputCredentialsNew
get
input_credentials_new
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
InputCredentialsNew get input_credentials_new {
try {
if (rawData["input_credentials_new"] is Map == false) {
return InputCredentialsNew({});
}
return InputCredentialsNew(rawData["input_credentials_new"] as Map);
} catch (e) {
return InputCredentialsNew({});
}
}
set
input_credentials_new
(InputCredentialsNew value)
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
set input_credentials_new(InputCredentialsNew value) {
rawData["input_credentials_new"] = value.toJson();
}