So i'm using suds-jurko for python3 and I have a value in my request like this:
`Date = None`
Date is not a required field. The issue I'm running into is when it processes the request, I get the error:
WebFault: Server raised fault: 'The formatter threw an exception while trying to deserialize the message: There was an error while trying to deserialize parameter http://webservices.soapclient.com/v11:request. The InnerException message was 'There was an error deserializing the object of type WebServices.Posting.Request. The value '' cannot be parsed as the type 'DateTime'.'. Please see InnerException for more details.'
Any clue how I can pass a valid NoneType so that my client won't convert it to an empty string?