aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_client/models/release_entity.py
blob: e3b232f4e22c89df62479ffe059ada114399c632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
# coding: utf-8

"""
    fatcat

    A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata  # noqa: E501

    OpenAPI spec version: 0.1.0
    
    Generated by: https://github.com/swagger-api/swagger-codegen.git
"""


import pprint
import re  # noqa: F401

import six

from fatcat_client.models.container_entity import ContainerEntity  # noqa: F401,E501
from fatcat_client.models.file_entity import FileEntity  # noqa: F401,E501
from fatcat_client.models.release_contrib import ReleaseContrib  # noqa: F401,E501
from fatcat_client.models.release_entity_abstracts import ReleaseEntityAbstracts  # noqa: F401,E501
from fatcat_client.models.release_ref import ReleaseRef  # noqa: F401,E501


class ReleaseEntity(object):
    """NOTE: This class is auto generated by the swagger code generator program.

    Do not edit the class manually.
    """

    """
    Attributes:
      swagger_types (dict): The key is attribute name
                            and the value is attribute type.
      attribute_map (dict): The key is attribute name
                            and the value is json key in definition.
    """
    swagger_types = {
        'abstracts': 'list[ReleaseEntityAbstracts]',
        'refs': 'list[ReleaseRef]',
        'contribs': 'list[ReleaseContrib]',
        'language': 'str',
        'publisher': 'str',
        'pages': 'str',
        'issue': 'str',
        'volume': 'str',
        'core_id': 'str',
        'pmcid': 'str',
        'pmid': 'str',
        'isbn13': 'str',
        'wikidata_qid': 'str',
        'doi': 'str',
        'release_year': 'int',
        'release_date': 'date',
        'release_status': 'str',
        'release_type': 'str',
        'container_id': 'str',
        'files': 'list[FileEntity]',
        'container': 'ContainerEntity',
        'work_id': 'str',
        'title': 'str',
        'state': 'str',
        'ident': 'str',
        'revision': 'str',
        'redirect': 'str',
        'extra': 'object',
        'edit_extra': 'object'
    }

    attribute_map = {
        'abstracts': 'abstracts',
        'refs': 'refs',
        'contribs': 'contribs',
        'language': 'language',
        'publisher': 'publisher',
        'pages': 'pages',
        'issue': 'issue',
        'volume': 'volume',
        'core_id': 'core_id',
        'pmcid': 'pmcid',
        'pmid': 'pmid',
        'isbn13': 'isbn13',
        'wikidata_qid': 'wikidata_qid',
        'doi': 'doi',
        'release_year': 'release_year',
        'release_date': 'release_date',
        'release_status': 'release_status',
        'release_type': 'release_type',
        'container_id': 'container_id',
        'files': 'files',
        'container': 'container',
        'work_id': 'work_id',
        'title': 'title',
        'state': 'state',
        'ident': 'ident',
        'revision': 'revision',
        'redirect': 'redirect',
        'extra': 'extra',
        'edit_extra': 'edit_extra'
    }

    def __init__(self, abstracts=None, refs=None, contribs=None, language=None, publisher=None, pages=None, issue=None, volume=None, core_id=None, pmcid=None, pmid=None, isbn13=None, wikidata_qid=None, doi=None, release_year=None, release_date=None, release_status=None, release_type=None, container_id=None, files=None, container=None, work_id=None, title=None, state=None, ident=None, revision=None, redirect=None, extra=None, edit_extra=None):  # noqa: E501
        """ReleaseEntity - a model defined in Swagger"""  # noqa: E501

        self._abstracts = None
        self._refs = None
        self._contribs = None
        self._language = None
        self._publisher = None
        self._pages = None
        self._issue = None
        self._volume = None
        self._core_id = None
        self._pmcid = None
        self._pmid = None
        self._isbn13 = None
        self._wikidata_qid = None
        self._doi = None
        self._release_year = None
        self._release_date = None
        self._release_status = None
        self._release_type = None
        self._container_id = None
        self._files = None
        self._container = None
        self._work_id = None
        self._title = None
        self._state = None
        self._ident = None
        self._revision = None
        self._redirect = None
        self._extra = None
        self._edit_extra = None
        self.discriminator = None

        if abstracts is not None:
            self.abstracts = abstracts
        if refs is not None:
            self.refs = refs
        if contribs is not None:
            self.contribs = contribs
        if language is not None:
            self.language = language
        if publisher is not None:
            self.publisher = publisher
        if pages is not None:
            self.pages = pages
        if issue is not None:
            self.issue = issue
        if volume is not None:
            self.volume = volume
        if core_id is not None:
            self.core_id = core_id
        if pmcid is not None:
            self.pmcid = pmcid
        if pmid is not None:
            self.pmid = pmid
        if isbn13 is not None:
            self.isbn13 = isbn13
        if wikidata_qid is not None:
            self.wikidata_qid = wikidata_qid
        if doi is not None:
            self.doi = doi
        if release_year is not None:
            self.release_year = release_year
        if release_date is not None:
            self.release_date = release_date
        if release_status is not None:
            self.release_status = release_status
        if release_type is not None:
            self.release_type = release_type
        if container_id is not None:
            self.container_id = container_id
        if files is not None:
            self.files = files
        if container is not None:
            self.container = container
        if work_id is not None:
            self.work_id = work_id
        if title is not None:
            self.title = title
        if state is not None:
            self.state = state
        if ident is not None:
            self.ident = ident
        if revision is not None:
            self.revision = revision
        if redirect is not None:
            self.redirect = redirect
        if extra is not None:
            self.extra = extra
        if edit_extra is not None:
            self.edit_extra = edit_extra

    @property
    def abstracts(self):
        """Gets the abstracts of this ReleaseEntity.  # noqa: E501


        :return: The abstracts of this ReleaseEntity.  # noqa: E501
        :rtype: list[ReleaseEntityAbstracts]
        """
        return self._abstracts

    @abstracts.setter
    def abstracts(self, abstracts):
        """Sets the abstracts of this ReleaseEntity.


        :param abstracts: The abstracts of this ReleaseEntity.  # noqa: E501
        :type: list[ReleaseEntityAbstracts]
        """

        self._abstracts = abstracts

    @property
    def refs(self):
        """Gets the refs of this ReleaseEntity.  # noqa: E501


        :return: The refs of this ReleaseEntity.  # noqa: E501
        :rtype: list[ReleaseRef]
        """
        return self._refs

    @refs.setter
    def refs(self, refs):
        """Sets the refs of this ReleaseEntity.


        :param refs: The refs of this ReleaseEntity.  # noqa: E501
        :type: list[ReleaseRef]
        """

        self._refs = refs

    @property
    def contribs(self):
        """Gets the contribs of this ReleaseEntity.  # noqa: E501


        :return: The contribs of this ReleaseEntity.  # noqa: E501
        :rtype: list[ReleaseContrib]
        """
        return self._contribs

    @contribs.setter
    def contribs(self, contribs):
        """Sets the contribs of this ReleaseEntity.


        :param contribs: The contribs of this ReleaseEntity.  # noqa: E501
        :type: list[ReleaseContrib]
        """

        self._contribs = contribs

    @property
    def language(self):
        """Gets the language of this ReleaseEntity.  # noqa: E501

        Two-letter RFC1766/ISO639-1 language code, with extensions  # noqa: E501

        :return: The language of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._language

    @language.setter
    def language(self, language):
        """Sets the language of this ReleaseEntity.

        Two-letter RFC1766/ISO639-1 language code, with extensions  # noqa: E501

        :param language: The language of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._language = language

    @property
    def publisher(self):
        """Gets the publisher of this ReleaseEntity.  # noqa: E501


        :return: The publisher of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._publisher

    @publisher.setter
    def publisher(self, publisher):
        """Sets the publisher of this ReleaseEntity.


        :param publisher: The publisher of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._publisher = publisher

    @property
    def pages(self):
        """Gets the pages of this ReleaseEntity.  # noqa: E501


        :return: The pages of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._pages

    @pages.setter
    def pages(self, pages):
        """Sets the pages of this ReleaseEntity.


        :param pages: The pages of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._pages = pages

    @property
    def issue(self):
        """Gets the issue of this ReleaseEntity.  # noqa: E501


        :return: The issue of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._issue

    @issue.setter
    def issue(self, issue):
        """Sets the issue of this ReleaseEntity.


        :param issue: The issue of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._issue = issue

    @property
    def volume(self):
        """Gets the volume of this ReleaseEntity.  # noqa: E501


        :return: The volume of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._volume

    @volume.setter
    def volume(self, volume):
        """Sets the volume of this ReleaseEntity.


        :param volume: The volume of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._volume = volume

    @property
    def core_id(self):
        """Gets the core_id of this ReleaseEntity.  # noqa: E501


        :return: The core_id of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._core_id

    @core_id.setter
    def core_id(self, core_id):
        """Sets the core_id of this ReleaseEntity.


        :param core_id: The core_id of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._core_id = core_id

    @property
    def pmcid(self):
        """Gets the pmcid of this ReleaseEntity.  # noqa: E501


        :return: The pmcid of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._pmcid

    @pmcid.setter
    def pmcid(self, pmcid):
        """Sets the pmcid of this ReleaseEntity.


        :param pmcid: The pmcid of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._pmcid = pmcid

    @property
    def pmid(self):
        """Gets the pmid of this ReleaseEntity.  # noqa: E501


        :return: The pmid of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._pmid

    @pmid.setter
    def pmid(self, pmid):
        """Sets the pmid of this ReleaseEntity.


        :param pmid: The pmid of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._pmid = pmid

    @property
    def isbn13(self):
        """Gets the isbn13 of this ReleaseEntity.  # noqa: E501


        :return: The isbn13 of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._isbn13

    @isbn13.setter
    def isbn13(self, isbn13):
        """Sets the isbn13 of this ReleaseEntity.


        :param isbn13: The isbn13 of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._isbn13 = isbn13

    @property
    def wikidata_qid(self):
        """Gets the wikidata_qid of this ReleaseEntity.  # noqa: E501


        :return: The wikidata_qid of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._wikidata_qid

    @wikidata_qid.setter
    def wikidata_qid(self, wikidata_qid):
        """Sets the wikidata_qid of this ReleaseEntity.


        :param wikidata_qid: The wikidata_qid of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._wikidata_qid = wikidata_qid

    @property
    def doi(self):
        """Gets the doi of this ReleaseEntity.  # noqa: E501


        :return: The doi of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._doi

    @doi.setter
    def doi(self, doi):
        """Sets the doi of this ReleaseEntity.


        :param doi: The doi of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._doi = doi

    @property
    def release_year(self):
        """Gets the release_year of this ReleaseEntity.  # noqa: E501


        :return: The release_year of this ReleaseEntity.  # noqa: E501
        :rtype: int
        """
        return self._release_year

    @release_year.setter
    def release_year(self, release_year):
        """Sets the release_year of this ReleaseEntity.


        :param release_year: The release_year of this ReleaseEntity.  # noqa: E501
        :type: int
        """

        self._release_year = release_year

    @property
    def release_date(self):
        """Gets the release_date of this ReleaseEntity.  # noqa: E501


        :return: The release_date of this ReleaseEntity.  # noqa: E501
        :rtype: date
        """
        return self._release_date

    @release_date.setter
    def release_date(self, release_date):
        """Sets the release_date of this ReleaseEntity.


        :param release_date: The release_date of this ReleaseEntity.  # noqa: E501
        :type: date
        """

        self._release_date = release_date

    @property
    def release_status(self):
        """Gets the release_status of this ReleaseEntity.  # noqa: E501


        :return: The release_status of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._release_status

    @release_status.setter
    def release_status(self, release_status):
        """Sets the release_status of this ReleaseEntity.


        :param release_status: The release_status of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._release_status = release_status

    @property
    def release_type(self):
        """Gets the release_type of this ReleaseEntity.  # noqa: E501


        :return: The release_type of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._release_type

    @release_type.setter
    def release_type(self, release_type):
        """Sets the release_type of this ReleaseEntity.


        :param release_type: The release_type of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._release_type = release_type

    @property
    def container_id(self):
        """Gets the container_id of this ReleaseEntity.  # noqa: E501


        :return: The container_id of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._container_id

    @container_id.setter
    def container_id(self, container_id):
        """Sets the container_id of this ReleaseEntity.


        :param container_id: The container_id of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._container_id = container_id

    @property
    def files(self):
        """Gets the files of this ReleaseEntity.  # noqa: E501

        Optional; GET-only  # noqa: E501

        :return: The files of this ReleaseEntity.  # noqa: E501
        :rtype: list[FileEntity]
        """
        return self._files

    @files.setter
    def files(self, files):
        """Sets the files of this ReleaseEntity.

        Optional; GET-only  # noqa: E501

        :param files: The files of this ReleaseEntity.  # noqa: E501
        :type: list[FileEntity]
        """

        self._files = files

    @property
    def container(self):
        """Gets the container of this ReleaseEntity.  # noqa: E501

        Optional; GET-only  # noqa: E501

        :return: The container of this ReleaseEntity.  # noqa: E501
        :rtype: ContainerEntity
        """
        return self._container

    @container.setter
    def container(self, container):
        """Sets the container of this ReleaseEntity.

        Optional; GET-only  # noqa: E501

        :param container: The container of this ReleaseEntity.  # noqa: E501
        :type: ContainerEntity
        """

        self._container = container

    @property
    def work_id(self):
        """Gets the work_id of this ReleaseEntity.  # noqa: E501


        :return: The work_id of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._work_id

    @work_id.setter
    def work_id(self, work_id):
        """Sets the work_id of this ReleaseEntity.


        :param work_id: The work_id of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._work_id = work_id

    @property
    def title(self):
        """Gets the title of this ReleaseEntity.  # noqa: E501

        Required for valid entities  # noqa: E501

        :return: The title of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._title

    @title.setter
    def title(self, title):
        """Sets the title of this ReleaseEntity.

        Required for valid entities  # noqa: E501

        :param title: The title of this ReleaseEntity.  # noqa: E501
        :type: str
        """

        self._title = title

    @property
    def state(self):
        """Gets the state of this ReleaseEntity.  # noqa: E501


        :return: The state of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._state

    @state.setter
    def state(self, state):
        """Sets the state of this ReleaseEntity.


        :param state: The state of this ReleaseEntity.  # noqa: E501
        :type: str
        """
        allowed_values = ["wip", "active", "redirect", "deleted"]  # noqa: E501
        if state not in allowed_values:
            raise ValueError(
                "Invalid value for `state` ({0}), must be one of {1}"  # noqa: E501
                .format(state, allowed_values)
            )

        self._state = state

    @property
    def ident(self):
        """Gets the ident of this ReleaseEntity.  # noqa: E501

        base32-encoded unique identifier  # noqa: E501

        :return: The ident of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._ident

    @ident.setter
    def ident(self, ident):
        """Sets the ident of this ReleaseEntity.

        base32-encoded unique identifier  # noqa: E501

        :param ident: The ident of this ReleaseEntity.  # noqa: E501
        :type: str
        """
        if ident is not None and len(ident) > 26:
            raise ValueError("Invalid value for `ident`, length must be less than or equal to `26`")  # noqa: E501
        if ident is not None and len(ident) < 26:
            raise ValueError("Invalid value for `ident`, length must be greater than or equal to `26`")  # noqa: E501
        if ident is not None and not re.search('[a-zA-Z2-7]{26}', ident):  # noqa: E501
            raise ValueError("Invalid value for `ident`, must be a follow pattern or equal to `/[a-zA-Z2-7]{26}/`")  # noqa: E501

        self._ident = ident

    @property
    def revision(self):
        """Gets the revision of this ReleaseEntity.  # noqa: E501

        UUID (lower-case, dash-separated, hex-encoded 128-bit)  # noqa: E501

        :return: The revision of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._revision

    @revision.setter
    def revision(self, revision):
        """Sets the revision of this ReleaseEntity.

        UUID (lower-case, dash-separated, hex-encoded 128-bit)  # noqa: E501

        :param revision: The revision of this ReleaseEntity.  # noqa: E501
        :type: str
        """
        if revision is not None and len(revision) > 36:
            raise ValueError("Invalid value for `revision`, length must be less than or equal to `36`")  # noqa: E501
        if revision is not None and len(revision) < 36:
            raise ValueError("Invalid value for `revision`, length must be greater than or equal to `36`")  # noqa: E501
        if revision is not None and not re.search('[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}', revision):  # noqa: E501
            raise ValueError("Invalid value for `revision`, must be a follow pattern or equal to `/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/`")  # noqa: E501

        self._revision = revision

    @property
    def redirect(self):
        """Gets the redirect of this ReleaseEntity.  # noqa: E501

        base32-encoded unique identifier  # noqa: E501

        :return: The redirect of this ReleaseEntity.  # noqa: E501
        :rtype: str
        """
        return self._redirect

    @redirect.setter
    def redirect(self, redirect):
        """Sets the redirect of this ReleaseEntity.

        base32-encoded unique identifier  # noqa: E501

        :param redirect: The redirect of this ReleaseEntity.  # noqa: E501
        :type: str
        """
        if redirect is not None and len(redirect) > 26:
            raise ValueError("Invalid value for `redirect`, length must be less than or equal to `26`")  # noqa: E501
        if redirect is not None and len(redirect) < 26:
            raise ValueError("Invalid value for `redirect`, length must be greater than or equal to `26`")  # noqa: E501
        if redirect is not None and not re.search('[a-zA-Z2-7]{26}', redirect):  # noqa: E501
            raise ValueError("Invalid value for `redirect`, must be a follow pattern or equal to `/[a-zA-Z2-7]{26}/`")  # noqa: E501

        self._redirect = redirect

    @property
    def extra(self):
        """Gets the extra of this ReleaseEntity.  # noqa: E501


        :return: The extra of this ReleaseEntity.  # noqa: E501
        :rtype: object
        """
        return self._extra

    @extra.setter
    def extra(self, extra):
        """Sets the extra of this ReleaseEntity.


        :param extra: The extra of this ReleaseEntity.  # noqa: E501
        :type: object
        """

        self._extra = extra

    @property
    def edit_extra(self):
        """Gets the edit_extra of this ReleaseEntity.  # noqa: E501


        :return: The edit_extra of this ReleaseEntity.  # noqa: E501
        :rtype: object
        """
        return self._edit_extra

    @edit_extra.setter
    def edit_extra(self, edit_extra):
        """Sets the edit_extra of this ReleaseEntity.


        :param edit_extra: The edit_extra of this ReleaseEntity.  # noqa: E501
        :type: object
        """

        self._edit_extra = edit_extra

    def to_dict(self):
        """Returns the model properties as a dict"""
        result = {}

        for attr, _ in six.iteritems(self.swagger_types):
            value = getattr(self, attr)
            if isinstance(value, list):
                result[attr] = list(map(
                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
                    value
                ))
            elif hasattr(value, "to_dict"):
                result[attr] = value.to_dict()
            elif isinstance(value, dict):
                result[attr] = dict(map(
                    lambda item: (item[0], item[1].to_dict())
                    if hasattr(item[1], "to_dict") else item,
                    value.items()
                ))
            else:
                result[attr] = value

        return result

    def to_str(self):
        """Returns the string representation of the model"""
        return pprint.pformat(self.to_dict())

    def __repr__(self):
        """For `print` and `pprint`"""
        return self.to_str()

    def __eq__(self, other):
        """Returns true if both objects are equal"""
        if not isinstance(other, ReleaseEntity):
            return False

        return self.__dict__ == other.__dict__

    def __ne__(self, other):
        """Returns true if both objects are not equal"""
        return not self == other