Metadata-Version: 2.4
Name: royal-sdk-panterra-mock-data
Version: 0.2.0
Summary: Deterministic typed mock data for the Royal PanTerra Python SDK
License: Proprietary
Requires-Python: >=3.11
Requires-Dist: royal-sdk-panterra==0.1.1
Description-Content-Type: text/markdown

# Royal PanTerra Python mock data

Sanitized production-shaped mock objects for `royal-sdk-panterra`. Every call returns a fresh mutable object graph, and all values are sanitized.

```python
from royal_sdk_panterra_mock_data import create_cdr_v2_list_response, create_cdr_v2_record

record = create_cdr_v2_record({"direction": "outbound"})
page = create_cdr_v2_list_response({"records": [record.to_dict()]})
```

Overrides use the vendor wire names accepted by the generated models.
The packaged fixture mirrors a canonical response captured through the production .NET client and sanitized in memory.
