---
title: body
framework: coretransferable
role: symbol
role_heading: Instance Property
path: coretransferable/transferrepresentation/body-swift.property
---

# body

A builder expression that describes the process of importing and exporting an item.

## Declaration

```swift
@TransferRepresentationBuilder<Self.Item> var body: Self.Body { get }
```

## Discussion

Discussion Combine multiple existing transfer representations to compose a single transfer representation that describes how to transfer an item in multiple scenarios. struct CombinedRepresentation: TransferRepresentation {    var body: some TransferRepresentation {        DataRepresentation(...)        FileRepresentation(...)    } }

## See Also

### Implementing a transfer representation

- [Body](coretransferable/transferrepresentation/body-swift.associatedtype.md)
- [Item](coretransferable/transferrepresentation/item.md)
