Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
customer.unsubscribe not in 2009?
I've been continuing with the 2008 WSDL for my code, but now I'm looking to use some of the 'new' features in 2009, but I've come across an issue with existing code:
01: Customer newCustomer = new Customer(); 02: newCustomer.entityId = newMemberDetails.member_organization; 03: newCustomer.companyName = newMemberDetails.member_organization; 04: newCustomer.unsubscribe = true; 05: newCustomer.unsubscribeSpecified = true;
That code works with the 2008_1_0 WSDL, but Visual Studio reports an error with lines 4 and 5 when I update my web reference to use 2009_1_0
I wasn't able to find anything in the help files about "unsubscribe" or "unsubscribeSpecified" - can someone help me either find the relevant help pages or explain what I need to do for 2009_1_0?
0