(value: unknown)
| 419 | } |
| 420 | |
| 421 | function mapReplyAddress(value: unknown): EmailBisonReplyAddress { |
| 422 | const record = toRecord(value) |
| 423 | |
| 424 | return { |
| 425 | name: toStringOrNull(record.name), |
| 426 | address: toStringOrNull(record.address), |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | function mapReplyAttachment(value: unknown): EmailBisonReplyAttachment { |
| 431 | const record = toRecord(value) |
nothing calls this directly
no test coverage detected