(object: any)
| 393 | |
| 394 | export const AgentInfo = { |
| 395 | fromJSON(object: any): AgentInfo { |
| 396 | return { |
| 397 | id: isSet(object.id) ? String(object.id) : '', |
| 398 | version: isSet(object.version) ? String(object.version) : '', |
| 399 | publicKey: isSet(object.publicKey) ? String(object.publicKey) : '', |
| 400 | containerName: isSet(object.containerName) ? String(object.containerName) : undefined, |
| 401 | } |
| 402 | }, |
| 403 | |
| 404 | toJSON(message: AgentInfo): unknown { |
| 405 | const obj: any = {} |
nothing calls this directly
no test coverage detected