# `GSAxisPart initWithDict:`

*Initializer*

Initialize the object with a dictionary

## Declaration

```swift
init!(dict: [String : Any]!)
```

```objc
- (instancetype) initWithDict:(NSDictionary<NSString *,id> *) dict;
```

```python
initWithDict_(dict: dict[str, object]) -> GSAxisPart
```

## Parameters

- `dict` — The content of the dict as it is saved to the .glyphs file

## Return Value

A new instance

## Discussion

The dict may look like this:

{ bottomValue = 40; name = Width; topValue = 100; }

