genericparser seed code
[modeling/etsicatalog.git] / genericparser / packages / serializers / response.py
1 # Copyright (C) 2019 Verizon. All Rights Reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 from rest_framework import serializers
16
17
18 class ProblemDetailsSerializer(serializers.Serializer):
19     type = serializers.CharField(
20         help_text="Type",
21         required=False,
22         allow_null=True
23     )
24     title = serializers.CharField(
25         help_text="Title",
26         required=False,
27         allow_null=True
28     )
29     status = serializers.IntegerField(
30         help_text="Status",
31         required=True
32     )
33     detail = serializers.CharField(
34         help_text="Detail",
35         required=True,
36         allow_null=True
37     )
38     instance = serializers.CharField(
39         help_text="Instance",
40         required=False,
41         allow_null=True
42     )
43     additional_details = serializers.ListField(
44         help_text="Any number of additional attributes, as defined in a "
45         "specification or by an implementation.",
46         required=False,
47         allow_null=True
48     )
49
50     class Meta:
51         ref_name = 'SUBSCRIPTION_ProblemDetailsSerializer'