I am using ZEEP to connect to NetSuite. One of the parameters that I need to pass to NS when creating the invoice is 'class'. If I understand correctly, the reason the following line does not compile is because 'class' is a reserved keyword.
invoice = invoiceType(
customFieldList = customFieldList,
entity = entityRecord,
subsidiary = subRecord,
department = departmentRecord,
location = locationRecord,
class = classRecord
)
I don't have the option to change the last parameter from say 'class' to 'Class' or something else, since this is what NetSuite expects the parameter to be called. Are there any alternatives that I can use in python? Is there a way to escape this while passing it as a parameter?