continuing implementing;

This commit is contained in:
StevanFreeborn
2022-04-18 15:07:31 -05:00
parent e7e0e5f0ad
commit b723c55f79
4 changed files with 114 additions and 29 deletions
+6 -3
View File
@@ -459,12 +459,15 @@ class OnspringClient:
jsonResponse = response.json()
createdDate = parseDate(jsonResponse['createdDate'])
modifiedDate = parseDate(jsonResponse['modifiedDate'])
fileInfo = FileInfo(
jsonResponse['type'],
jsonResponse['contentType'],
jsonResponse['name'],
jsonResponse['createdDate'],
jsonResponse['modifiedDate'],
createdDate,
modifiedDate,
jsonResponse['owner'],
jsonResponse['fileHref'])
@@ -839,7 +842,7 @@ class OnspringClient:
fields.append(field)
record.fieldData = fields
record.fields = fields
records.append(record)