-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_formatted_api_plugin.go
1094 lines (924 loc) · 28.5 KB
/
model_formatted_api_plugin.go
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
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
GCOM API
Grafana.com API (public). Looking for GCOM API client packages? You can find them at [grafana-com-public-clients](https://github.com/grafana/grafana-com-public-clients) repository. If you have any questions, please contact support in the Grafana Cloud UI. This spec is in *Beta* stage, so use it with caution: - Not all endpoint responses are properly typed for the time being. - Some request parameter types may not be precise
API version: public
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package gcom
import (
"encoding/json"
)
// checks if the FormattedApiPlugin type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &FormattedApiPlugin{}
// FormattedApiPlugin struct for FormattedApiPlugin
type FormattedApiPlugin struct {
Status string `json:"status"`
Id float32 `json:"id"`
TypeId float32 `json:"typeId"`
TypeName string `json:"typeName"`
TypeCode string `json:"typeCode"`
Slug string `json:"slug"`
Name string `json:"name"`
Description string `json:"description"`
Version string `json:"version"`
VersionStatus string `json:"versionStatus"`
VersionSignatureType string `json:"versionSignatureType"`
VersionSignedByOrg string `json:"versionSignedByOrg"`
VersionSignedByOrgName string `json:"versionSignedByOrgName"`
UserId float32 `json:"userId"`
OrgId float32 `json:"orgId"`
OrgName string `json:"orgName"`
OrgSlug string `json:"orgSlug"`
OrgUrl string `json:"orgUrl"`
Url string `json:"url"`
CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"`
Downloads float32 `json:"downloads"`
Verified bool `json:"verified"`
Featured float32 `json:"featured"`
Internal bool `json:"internal"`
DownloadSlug string `json:"downloadSlug"`
Popularity float32 `json:"popularity"`
SignatureType string `json:"signatureType"`
Packages map[string]interface{} `json:"packages"`
Links []LinksInner1 `json:"links"`
AngularDetected bool `json:"angularDetected"`
LastCommitDate string `json:"lastCommitDate"`
LicenseUrl *string `json:"licenseUrl,omitempty"`
DocumentationUrl *string `json:"documentationUrl,omitempty"`
AdditionalProperties map[string]interface{}
}
type _FormattedApiPlugin FormattedApiPlugin
// NewFormattedApiPlugin instantiates a new FormattedApiPlugin object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewFormattedApiPlugin(status string, id float32, typeId float32, typeName string, typeCode string, slug string, name string, description string, version string, versionStatus string, versionSignatureType string, versionSignedByOrg string, versionSignedByOrgName string, userId float32, orgId float32, orgName string, orgSlug string, orgUrl string, url string, createdAt string, updatedAt string, downloads float32, verified bool, featured float32, internal bool, downloadSlug string, popularity float32, signatureType string, packages map[string]interface{}, links []LinksInner1, angularDetected bool, lastCommitDate string) *FormattedApiPlugin {
this := FormattedApiPlugin{}
this.Status = status
this.Id = id
this.TypeId = typeId
this.TypeName = typeName
this.TypeCode = typeCode
this.Slug = slug
this.Name = name
this.Description = description
this.Version = version
this.VersionStatus = versionStatus
this.VersionSignatureType = versionSignatureType
this.VersionSignedByOrg = versionSignedByOrg
this.VersionSignedByOrgName = versionSignedByOrgName
this.UserId = userId
this.OrgId = orgId
this.OrgName = orgName
this.OrgSlug = orgSlug
this.OrgUrl = orgUrl
this.Url = url
this.CreatedAt = createdAt
this.UpdatedAt = updatedAt
this.Downloads = downloads
this.Verified = verified
this.Featured = featured
this.Internal = internal
this.DownloadSlug = downloadSlug
this.Popularity = popularity
this.SignatureType = signatureType
this.Packages = packages
this.Links = links
this.AngularDetected = angularDetected
this.LastCommitDate = lastCommitDate
return &this
}
// NewFormattedApiPluginWithDefaults instantiates a new FormattedApiPlugin object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewFormattedApiPluginWithDefaults() *FormattedApiPlugin {
this := FormattedApiPlugin{}
return &this
}
// GetStatus returns the Status field value
func (o *FormattedApiPlugin) GetStatus() string {
if o == nil {
var ret string
return ret
}
return o.Status
}
// GetStatusOk returns a tuple with the Status field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetStatusOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Status, true
}
// SetStatus sets field value
func (o *FormattedApiPlugin) SetStatus(v string) {
o.Status = v
}
// GetId returns the Id field value
func (o *FormattedApiPlugin) GetId() float32 {
if o == nil {
var ret float32
return ret
}
return o.Id
}
// GetIdOk returns a tuple with the Id field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetIdOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.Id, true
}
// SetId sets field value
func (o *FormattedApiPlugin) SetId(v float32) {
o.Id = v
}
// GetTypeId returns the TypeId field value
func (o *FormattedApiPlugin) GetTypeId() float32 {
if o == nil {
var ret float32
return ret
}
return o.TypeId
}
// GetTypeIdOk returns a tuple with the TypeId field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetTypeIdOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.TypeId, true
}
// SetTypeId sets field value
func (o *FormattedApiPlugin) SetTypeId(v float32) {
o.TypeId = v
}
// GetTypeName returns the TypeName field value
func (o *FormattedApiPlugin) GetTypeName() string {
if o == nil {
var ret string
return ret
}
return o.TypeName
}
// GetTypeNameOk returns a tuple with the TypeName field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetTypeNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.TypeName, true
}
// SetTypeName sets field value
func (o *FormattedApiPlugin) SetTypeName(v string) {
o.TypeName = v
}
// GetTypeCode returns the TypeCode field value
func (o *FormattedApiPlugin) GetTypeCode() string {
if o == nil {
var ret string
return ret
}
return o.TypeCode
}
// GetTypeCodeOk returns a tuple with the TypeCode field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetTypeCodeOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.TypeCode, true
}
// SetTypeCode sets field value
func (o *FormattedApiPlugin) SetTypeCode(v string) {
o.TypeCode = v
}
// GetSlug returns the Slug field value
func (o *FormattedApiPlugin) GetSlug() string {
if o == nil {
var ret string
return ret
}
return o.Slug
}
// GetSlugOk returns a tuple with the Slug field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetSlugOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Slug, true
}
// SetSlug sets field value
func (o *FormattedApiPlugin) SetSlug(v string) {
o.Slug = v
}
// GetName returns the Name field value
func (o *FormattedApiPlugin) GetName() string {
if o == nil {
var ret string
return ret
}
return o.Name
}
// GetNameOk returns a tuple with the Name field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Name, true
}
// SetName sets field value
func (o *FormattedApiPlugin) SetName(v string) {
o.Name = v
}
// GetDescription returns the Description field value
func (o *FormattedApiPlugin) GetDescription() string {
if o == nil {
var ret string
return ret
}
return o.Description
}
// GetDescriptionOk returns a tuple with the Description field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetDescriptionOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Description, true
}
// SetDescription sets field value
func (o *FormattedApiPlugin) SetDescription(v string) {
o.Description = v
}
// GetVersion returns the Version field value
func (o *FormattedApiPlugin) GetVersion() string {
if o == nil {
var ret string
return ret
}
return o.Version
}
// GetVersionOk returns a tuple with the Version field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetVersionOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Version, true
}
// SetVersion sets field value
func (o *FormattedApiPlugin) SetVersion(v string) {
o.Version = v
}
// GetVersionStatus returns the VersionStatus field value
func (o *FormattedApiPlugin) GetVersionStatus() string {
if o == nil {
var ret string
return ret
}
return o.VersionStatus
}
// GetVersionStatusOk returns a tuple with the VersionStatus field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetVersionStatusOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.VersionStatus, true
}
// SetVersionStatus sets field value
func (o *FormattedApiPlugin) SetVersionStatus(v string) {
o.VersionStatus = v
}
// GetVersionSignatureType returns the VersionSignatureType field value
func (o *FormattedApiPlugin) GetVersionSignatureType() string {
if o == nil {
var ret string
return ret
}
return o.VersionSignatureType
}
// GetVersionSignatureTypeOk returns a tuple with the VersionSignatureType field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetVersionSignatureTypeOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.VersionSignatureType, true
}
// SetVersionSignatureType sets field value
func (o *FormattedApiPlugin) SetVersionSignatureType(v string) {
o.VersionSignatureType = v
}
// GetVersionSignedByOrg returns the VersionSignedByOrg field value
func (o *FormattedApiPlugin) GetVersionSignedByOrg() string {
if o == nil {
var ret string
return ret
}
return o.VersionSignedByOrg
}
// GetVersionSignedByOrgOk returns a tuple with the VersionSignedByOrg field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetVersionSignedByOrgOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.VersionSignedByOrg, true
}
// SetVersionSignedByOrg sets field value
func (o *FormattedApiPlugin) SetVersionSignedByOrg(v string) {
o.VersionSignedByOrg = v
}
// GetVersionSignedByOrgName returns the VersionSignedByOrgName field value
func (o *FormattedApiPlugin) GetVersionSignedByOrgName() string {
if o == nil {
var ret string
return ret
}
return o.VersionSignedByOrgName
}
// GetVersionSignedByOrgNameOk returns a tuple with the VersionSignedByOrgName field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetVersionSignedByOrgNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.VersionSignedByOrgName, true
}
// SetVersionSignedByOrgName sets field value
func (o *FormattedApiPlugin) SetVersionSignedByOrgName(v string) {
o.VersionSignedByOrgName = v
}
// GetUserId returns the UserId field value
func (o *FormattedApiPlugin) GetUserId() float32 {
if o == nil {
var ret float32
return ret
}
return o.UserId
}
// GetUserIdOk returns a tuple with the UserId field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetUserIdOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.UserId, true
}
// SetUserId sets field value
func (o *FormattedApiPlugin) SetUserId(v float32) {
o.UserId = v
}
// GetOrgId returns the OrgId field value
func (o *FormattedApiPlugin) GetOrgId() float32 {
if o == nil {
var ret float32
return ret
}
return o.OrgId
}
// GetOrgIdOk returns a tuple with the OrgId field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetOrgIdOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.OrgId, true
}
// SetOrgId sets field value
func (o *FormattedApiPlugin) SetOrgId(v float32) {
o.OrgId = v
}
// GetOrgName returns the OrgName field value
func (o *FormattedApiPlugin) GetOrgName() string {
if o == nil {
var ret string
return ret
}
return o.OrgName
}
// GetOrgNameOk returns a tuple with the OrgName field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetOrgNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.OrgName, true
}
// SetOrgName sets field value
func (o *FormattedApiPlugin) SetOrgName(v string) {
o.OrgName = v
}
// GetOrgSlug returns the OrgSlug field value
func (o *FormattedApiPlugin) GetOrgSlug() string {
if o == nil {
var ret string
return ret
}
return o.OrgSlug
}
// GetOrgSlugOk returns a tuple with the OrgSlug field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetOrgSlugOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.OrgSlug, true
}
// SetOrgSlug sets field value
func (o *FormattedApiPlugin) SetOrgSlug(v string) {
o.OrgSlug = v
}
// GetOrgUrl returns the OrgUrl field value
func (o *FormattedApiPlugin) GetOrgUrl() string {
if o == nil {
var ret string
return ret
}
return o.OrgUrl
}
// GetOrgUrlOk returns a tuple with the OrgUrl field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetOrgUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.OrgUrl, true
}
// SetOrgUrl sets field value
func (o *FormattedApiPlugin) SetOrgUrl(v string) {
o.OrgUrl = v
}
// GetUrl returns the Url field value
func (o *FormattedApiPlugin) GetUrl() string {
if o == nil {
var ret string
return ret
}
return o.Url
}
// GetUrlOk returns a tuple with the Url field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Url, true
}
// SetUrl sets field value
func (o *FormattedApiPlugin) SetUrl(v string) {
o.Url = v
}
// GetCreatedAt returns the CreatedAt field value
func (o *FormattedApiPlugin) GetCreatedAt() string {
if o == nil {
var ret string
return ret
}
return o.CreatedAt
}
// GetCreatedAtOk returns a tuple with the CreatedAt field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetCreatedAtOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.CreatedAt, true
}
// SetCreatedAt sets field value
func (o *FormattedApiPlugin) SetCreatedAt(v string) {
o.CreatedAt = v
}
// GetUpdatedAt returns the UpdatedAt field value
func (o *FormattedApiPlugin) GetUpdatedAt() string {
if o == nil {
var ret string
return ret
}
return o.UpdatedAt
}
// GetUpdatedAtOk returns a tuple with the UpdatedAt field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetUpdatedAtOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.UpdatedAt, true
}
// SetUpdatedAt sets field value
func (o *FormattedApiPlugin) SetUpdatedAt(v string) {
o.UpdatedAt = v
}
// GetDownloads returns the Downloads field value
func (o *FormattedApiPlugin) GetDownloads() float32 {
if o == nil {
var ret float32
return ret
}
return o.Downloads
}
// GetDownloadsOk returns a tuple with the Downloads field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetDownloadsOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.Downloads, true
}
// SetDownloads sets field value
func (o *FormattedApiPlugin) SetDownloads(v float32) {
o.Downloads = v
}
// GetVerified returns the Verified field value
func (o *FormattedApiPlugin) GetVerified() bool {
if o == nil {
var ret bool
return ret
}
return o.Verified
}
// GetVerifiedOk returns a tuple with the Verified field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetVerifiedOk() (*bool, bool) {
if o == nil {
return nil, false
}
return &o.Verified, true
}
// SetVerified sets field value
func (o *FormattedApiPlugin) SetVerified(v bool) {
o.Verified = v
}
// GetFeatured returns the Featured field value
func (o *FormattedApiPlugin) GetFeatured() float32 {
if o == nil {
var ret float32
return ret
}
return o.Featured
}
// GetFeaturedOk returns a tuple with the Featured field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetFeaturedOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.Featured, true
}
// SetFeatured sets field value
func (o *FormattedApiPlugin) SetFeatured(v float32) {
o.Featured = v
}
// GetInternal returns the Internal field value
func (o *FormattedApiPlugin) GetInternal() bool {
if o == nil {
var ret bool
return ret
}
return o.Internal
}
// GetInternalOk returns a tuple with the Internal field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetInternalOk() (*bool, bool) {
if o == nil {
return nil, false
}
return &o.Internal, true
}
// SetInternal sets field value
func (o *FormattedApiPlugin) SetInternal(v bool) {
o.Internal = v
}
// GetDownloadSlug returns the DownloadSlug field value
func (o *FormattedApiPlugin) GetDownloadSlug() string {
if o == nil {
var ret string
return ret
}
return o.DownloadSlug
}
// GetDownloadSlugOk returns a tuple with the DownloadSlug field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetDownloadSlugOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.DownloadSlug, true
}
// SetDownloadSlug sets field value
func (o *FormattedApiPlugin) SetDownloadSlug(v string) {
o.DownloadSlug = v
}
// GetPopularity returns the Popularity field value
func (o *FormattedApiPlugin) GetPopularity() float32 {
if o == nil {
var ret float32
return ret
}
return o.Popularity
}
// GetPopularityOk returns a tuple with the Popularity field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetPopularityOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.Popularity, true
}
// SetPopularity sets field value
func (o *FormattedApiPlugin) SetPopularity(v float32) {
o.Popularity = v
}
// GetSignatureType returns the SignatureType field value
func (o *FormattedApiPlugin) GetSignatureType() string {
if o == nil {
var ret string
return ret
}
return o.SignatureType
}
// GetSignatureTypeOk returns a tuple with the SignatureType field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetSignatureTypeOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.SignatureType, true
}
// SetSignatureType sets field value
func (o *FormattedApiPlugin) SetSignatureType(v string) {
o.SignatureType = v
}
// GetPackages returns the Packages field value
func (o *FormattedApiPlugin) GetPackages() map[string]interface{} {
if o == nil {
var ret map[string]interface{}
return ret
}
return o.Packages
}
// GetPackagesOk returns a tuple with the Packages field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetPackagesOk() (map[string]interface{}, bool) {
if o == nil {
return map[string]interface{}{}, false
}
return o.Packages, true
}
// SetPackages sets field value
func (o *FormattedApiPlugin) SetPackages(v map[string]interface{}) {
o.Packages = v
}
// GetLinks returns the Links field value
func (o *FormattedApiPlugin) GetLinks() []LinksInner1 {
if o == nil {
var ret []LinksInner1
return ret
}
return o.Links
}
// GetLinksOk returns a tuple with the Links field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetLinksOk() ([]LinksInner1, bool) {
if o == nil {
return nil, false
}
return o.Links, true
}
// SetLinks sets field value
func (o *FormattedApiPlugin) SetLinks(v []LinksInner1) {
o.Links = v
}
// GetAngularDetected returns the AngularDetected field value
func (o *FormattedApiPlugin) GetAngularDetected() bool {
if o == nil {
var ret bool
return ret
}
return o.AngularDetected
}
// GetAngularDetectedOk returns a tuple with the AngularDetected field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetAngularDetectedOk() (*bool, bool) {
if o == nil {
return nil, false
}
return &o.AngularDetected, true
}
// SetAngularDetected sets field value
func (o *FormattedApiPlugin) SetAngularDetected(v bool) {
o.AngularDetected = v
}
// GetLastCommitDate returns the LastCommitDate field value
func (o *FormattedApiPlugin) GetLastCommitDate() string {
if o == nil {
var ret string
return ret
}
return o.LastCommitDate
}
// GetLastCommitDateOk returns a tuple with the LastCommitDate field value
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetLastCommitDateOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.LastCommitDate, true
}
// SetLastCommitDate sets field value
func (o *FormattedApiPlugin) SetLastCommitDate(v string) {
o.LastCommitDate = v
}
// GetLicenseUrl returns the LicenseUrl field value if set, zero value otherwise.
func (o *FormattedApiPlugin) GetLicenseUrl() string {
if o == nil || IsNil(o.LicenseUrl) {
var ret string
return ret
}
return *o.LicenseUrl
}
// GetLicenseUrlOk returns a tuple with the LicenseUrl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetLicenseUrlOk() (*string, bool) {
if o == nil || IsNil(o.LicenseUrl) {
return nil, false
}
return o.LicenseUrl, true
}
// HasLicenseUrl returns a boolean if a field has been set.
func (o *FormattedApiPlugin) HasLicenseUrl() bool {
if o != nil && !IsNil(o.LicenseUrl) {
return true
}
return false
}
// SetLicenseUrl gets a reference to the given string and assigns it to the LicenseUrl field.
func (o *FormattedApiPlugin) SetLicenseUrl(v string) {
o.LicenseUrl = &v
}
// GetDocumentationUrl returns the DocumentationUrl field value if set, zero value otherwise.
func (o *FormattedApiPlugin) GetDocumentationUrl() string {
if o == nil || IsNil(o.DocumentationUrl) {
var ret string
return ret
}
return *o.DocumentationUrl
}
// GetDocumentationUrlOk returns a tuple with the DocumentationUrl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *FormattedApiPlugin) GetDocumentationUrlOk() (*string, bool) {
if o == nil || IsNil(o.DocumentationUrl) {
return nil, false
}
return o.DocumentationUrl, true
}
// HasDocumentationUrl returns a boolean if a field has been set.
func (o *FormattedApiPlugin) HasDocumentationUrl() bool {
if o != nil && !IsNil(o.DocumentationUrl) {
return true
}
return false
}
// SetDocumentationUrl gets a reference to the given string and assigns it to the DocumentationUrl field.
func (o *FormattedApiPlugin) SetDocumentationUrl(v string) {
o.DocumentationUrl = &v
}
func (o FormattedApiPlugin) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o FormattedApiPlugin) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["status"] = o.Status
toSerialize["id"] = o.Id
toSerialize["typeId"] = o.TypeId
toSerialize["typeName"] = o.TypeName
toSerialize["typeCode"] = o.TypeCode
toSerialize["slug"] = o.Slug
toSerialize["name"] = o.Name
toSerialize["description"] = o.Description
toSerialize["version"] = o.Version
toSerialize["versionStatus"] = o.VersionStatus
toSerialize["versionSignatureType"] = o.VersionSignatureType
toSerialize["versionSignedByOrg"] = o.VersionSignedByOrg
toSerialize["versionSignedByOrgName"] = o.VersionSignedByOrgName
toSerialize["userId"] = o.UserId
toSerialize["orgId"] = o.OrgId
toSerialize["orgName"] = o.OrgName
toSerialize["orgSlug"] = o.OrgSlug
toSerialize["orgUrl"] = o.OrgUrl
toSerialize["url"] = o.Url
toSerialize["createdAt"] = o.CreatedAt
toSerialize["updatedAt"] = o.UpdatedAt
toSerialize["downloads"] = o.Downloads
toSerialize["verified"] = o.Verified
toSerialize["featured"] = o.Featured
toSerialize["internal"] = o.Internal
toSerialize["downloadSlug"] = o.DownloadSlug
toSerialize["popularity"] = o.Popularity
toSerialize["signatureType"] = o.SignatureType
toSerialize["packages"] = o.Packages
toSerialize["links"] = o.Links
toSerialize["angularDetected"] = o.AngularDetected
toSerialize["lastCommitDate"] = o.LastCommitDate
if !IsNil(o.LicenseUrl) {
toSerialize["licenseUrl"] = o.LicenseUrl
}
if !IsNil(o.DocumentationUrl) {
toSerialize["documentationUrl"] = o.DocumentationUrl
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return toSerialize, nil
}
func (o *FormattedApiPlugin) UnmarshalJSON(data []byte) (err error) {
allProperties := make(map[string]interface{})