feat: add Tech Passport API integration for vehicle information retrieval
This commit is contained in:
@@ -11,3 +11,4 @@ from .report import * # noqa
|
||||
from .request import * # noqa
|
||||
from .valuation import * # noqa
|
||||
from .vehicle import * # noqa
|
||||
from .tech_passport import * # noqa
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
from .tech_passport import * # noqa
|
||||
@@ -0,0 +1,6 @@
|
||||
from rest_framework import serializers
|
||||
|
||||
class TechPassportSerializer(serializers.Serializer):
|
||||
autonumber = serializers.CharField(required=True, max_length=20)
|
||||
tech_pass_number = serializers.CharField(required=True, max_length=20)
|
||||
tech_pass_series = serializers.CharField(required=True, max_length=20)
|
||||
Reference in New Issue
Block a user