# `GSInstance initWithDict:container:format:`

*Initializer*

Initializes a new instance of the GSInstance class with a dictionary and format version.

## Declaration

```swift
init(dict: [String : Any], container parent: Any?, format formatVersion: GSFormatVersion)
```

```objc
- (instancetype) initWithDict:(NSDictionary<NSString *,id> *) dict container:(id) parent format:(GSFormatVersion) formatVersion;
```

```python
initWithDict_container_format_(dict: dict[str, object], parent: object, formatVersion: GSFormatVersion) -> GSInstance
```

## Parameters

- `dict` — The dictionary to initialize with.
- `parent` — The parent container.
- `formatVersion` — The format version to initialize with.

## Return Value

A new instance of the GSInstance class.

