( resource: JsonRecord )
| 361 | } |
| 362 | |
| 363 | function normalizeVantaFrameworkRequirementControl( |
| 364 | resource: JsonRecord |
| 365 | ): VantaFrameworkRequirementControl { |
| 366 | return { |
| 367 | id: getString(resource.id), |
| 368 | externalId: getString(resource.externalId), |
| 369 | name: getString(resource.name), |
| 370 | description: getString(resource.description), |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | function normalizeVantaFrameworkRequirement(resource: JsonRecord): VantaFrameworkRequirement { |
| 375 | return { |
nothing calls this directly
no test coverage detected