840424b488
there is loads of repetition since a whole class and it's references are defined in the same file. need to figure out a way to get them to generate with references. just uploading this for now so it is visible for ppl to check out
18 lines
455 B
Python
18 lines
455 B
Python
# generated by datamodel-codegen:
|
|
# filename: Vector.json
|
|
# timestamp: 2020-11-24T16:33:36+00:00
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import List, Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Vector(BaseModel):
|
|
value: Optional[List[float]] = None
|
|
id: Optional[Optional[str]] = None
|
|
totalChildrenCount: Optional[int] = None
|
|
applicationId: Optional[Optional[str]] = None
|
|
speckle_type: Optional[Optional[str]] = None
|