-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCurrentUser.cs
More file actions
1605 lines (1510 loc) · 76.2 KB
/
Copy pathCurrentUser.cs
File metadata and controls
1605 lines (1510 loc) · 76.2 KB
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
/*
* VRChat API Documentation
*
*
* The version of the OpenAPI document: 1.20.8
* Contact: vrchatapi.lpv0t@aries.fyi
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.IO;
using System.Runtime.Serialization;
using System.Text;
using System.Text.RegularExpressions;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Linq;
using System.ComponentModel.DataAnnotations;
using FileParameter = VRChat.API.Client.FileParameter;
using OpenAPIDateConverter = VRChat.API.Client.OpenAPIDateConverter;
namespace VRChat.API.Model
{
/// <summary>
/// CurrentUser
/// </summary>
[DataContract(Name = "CurrentUser")]
public partial class CurrentUser : IEquatable<CurrentUser>, IValidatableObject
{
/// <summary>
/// Gets or Sets AgeVerificationStatus
/// </summary>
[DataMember(Name = "ageVerificationStatus", IsRequired = false, EmitDefaultValue = true)]
public AgeVerificationStatus AgeVerificationStatus { get; set; }
/// <summary>
/// Gets or Sets DeveloperType
/// </summary>
[DataMember(Name = "developerType", IsRequired = false, EmitDefaultValue = true)]
public DeveloperType DeveloperType { get; set; }
/// <summary>
/// Gets or Sets State
/// </summary>
[DataMember(Name = "state", IsRequired = false, EmitDefaultValue = true)]
public UserState State { get; set; }
/// <summary>
/// Gets or Sets Status
/// </summary>
[DataMember(Name = "status", IsRequired = false, EmitDefaultValue = true)]
public UserStatus Status { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="CurrentUser" /> class.
/// </summary>
[JsonConstructorAttribute]
protected CurrentUser() { }
/// <summary>
/// Initializes a new instance of the <see cref="CurrentUser" /> class.
/// </summary>
/// <param name="acceptedPrivacyVersion">acceptedPrivacyVersion.</param>
/// <param name="acceptedTOSVersion">acceptedTOSVersion (required).</param>
/// <param name="accountDeletionDate">accountDeletionDate.</param>
/// <param name="accountDeletionLog"> .</param>
/// <param name="activeFriends"> .</param>
/// <param name="ageVerificationStatus">ageVerificationStatus (required).</param>
/// <param name="ageVerified">`true` if, user is age verified (not 18+). (required).</param>
/// <param name="allowAvatarCopying">allowAvatarCopying (required).</param>
/// <param name="appleDetails">appleDetails.</param>
/// <param name="appleId">appleId.</param>
/// <param name="authToken">The auth token for NEWLY REGISTERED ACCOUNTS ONLY (/auth/register).</param>
/// <param name="badges"> .</param>
/// <param name="bio">bio (required).</param>
/// <param name="bioLinks"> (required).</param>
/// <param name="contentFilters">These tags begin with `content_` and control content gating.</param>
/// <param name="currentAvatar">currentAvatar (required).</param>
/// <param name="currentAvatarImageUrl">When profilePicOverride is not empty, use it instead. (required).</param>
/// <param name="currentAvatarTags">currentAvatarTags (required).</param>
/// <param name="currentAvatarThumbnailImageUrl">When profilePicOverride is not empty, use it instead. (required).</param>
/// <param name="dateJoined">dateJoined (required).</param>
/// <param name="developerType">developerType (required).</param>
/// <param name="discordDetails">discordDetails.</param>
/// <param name="discordId">https://discord.com/developers/docs/reference#snowflakes.</param>
/// <param name="displayName">displayName (required).</param>
/// <param name="emailVerified">emailVerified (required).</param>
/// <param name="fallbackAvatar">fallbackAvatar.</param>
/// <param name="friendGroupNames">Always empty array. (required).</param>
/// <param name="friendKey">friendKey (required).</param>
/// <param name="friends">friends (required).</param>
/// <param name="googleDetails">googleDetails.</param>
/// <param name="googleId">googleId.</param>
/// <param name="hasBirthday">hasBirthday (required).</param>
/// <param name="hasDiscordFriendsOptOut">hasDiscordFriendsOptOut.</param>
/// <param name="hasEmail">hasEmail (required).</param>
/// <param name="hasLoggedInFromClient">hasLoggedInFromClient (required).</param>
/// <param name="hasPendingEmail">hasPendingEmail (required).</param>
/// <param name="hasSharedConnectionsOptOut">hasSharedConnectionsOptOut.</param>
/// <param name="hideContentFilterSettings">hideContentFilterSettings.</param>
/// <param name="homeLocation">WorldID be \"offline\" on User profiles if you are not friends with that user. (required).</param>
/// <param name="id">A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. (required).</param>
/// <param name="isAdult">isAdult (required).</param>
/// <param name="isBoopingEnabled">isBoopingEnabled (default to true).</param>
/// <param name="isFriend">isFriend (required) (default to false).</param>
/// <param name="lastActivity">lastActivity.</param>
/// <param name="lastLogin">lastLogin (required).</param>
/// <param name="lastMobile">lastMobile (required).</param>
/// <param name="lastPlatform">This is normally `android`, `ios`, `standalonewindows`, `web`, or the empty value ``, but also supposedly can be any random Unity version such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`. (required).</param>
/// <param name="obfuscatedEmail">obfuscatedEmail (required).</param>
/// <param name="obfuscatedPendingEmail">obfuscatedPendingEmail (required).</param>
/// <param name="oculusId">oculusId (required).</param>
/// <param name="offlineFriends">offlineFriends.</param>
/// <param name="onlineFriends">onlineFriends.</param>
/// <param name="pastDisplayNames"> (required).</param>
/// <param name="picoId">picoId.</param>
/// <param name="platformHistory">platformHistory.</param>
/// <param name="presence">presence.</param>
/// <param name="profilePicOverride">profilePicOverride (required).</param>
/// <param name="profilePicOverrideThumbnail">profilePicOverrideThumbnail (required).</param>
/// <param name="pronouns">pronouns (required).</param>
/// <param name="pronounsHistory">pronounsHistory (required).</param>
/// <param name="queuedInstance">queuedInstance.</param>
/// <param name="receiveMobileInvitations">receiveMobileInvitations.</param>
/// <param name="state">state (required).</param>
/// <param name="status">status (required).</param>
/// <param name="statusDescription">statusDescription (required).</param>
/// <param name="statusFirstTime">statusFirstTime (required).</param>
/// <param name="statusHistory">statusHistory (required).</param>
/// <param name="steamDetails">steamDetails (required).</param>
/// <param name="steamId">steamId (required).</param>
/// <param name="tags">tags (required).</param>
/// <param name="twitchDetails">twitchDetails.</param>
/// <param name="twitchId">twitchId.</param>
/// <param name="twoFactorAuthEnabled">twoFactorAuthEnabled (required).</param>
/// <param name="twoFactorAuthEnabledDate">twoFactorAuthEnabledDate.</param>
/// <param name="unsubscribe">unsubscribe (required).</param>
/// <param name="updatedAt">updatedAt.</param>
/// <param name="userIcon">userIcon (required).</param>
/// <param name="userLanguage">userLanguage.</param>
/// <param name="userLanguageCode">userLanguageCode.</param>
/// <param name="username">-| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429)..</param>
/// <param name="usesGeneratedPassword">usesGeneratedPassword (required).</param>
/// <param name="viveId">viveId.</param>
public CurrentUser(int acceptedPrivacyVersion = default, int acceptedTOSVersion = default, DateOnly? accountDeletionDate = default, List<AccountDeletionLog> accountDeletionLog = default, List<string> activeFriends = default, AgeVerificationStatus ageVerificationStatus = default, bool ageVerified = default, bool allowAvatarCopying = default, Object appleDetails = default, string appleId = default, string authToken = default, List<Badge> badges = default, string bio = default, List<string> bioLinks = default, List<string> contentFilters = default, string currentAvatar = default, string currentAvatarImageUrl = default, List<string> currentAvatarTags = default, string currentAvatarThumbnailImageUrl = default, DateOnly dateJoined = default, DeveloperType developerType = default, DiscordDetails discordDetails = default, string discordId = default, string displayName = default, bool emailVerified = default, string fallbackAvatar = default, List<string> friendGroupNames = default, string friendKey = default, List<string> friends = default, Object googleDetails = default, string googleId = default, bool hasBirthday = default, bool hasDiscordFriendsOptOut = default, bool hasEmail = default, bool hasLoggedInFromClient = default, bool hasPendingEmail = default, bool hasSharedConnectionsOptOut = default, bool hideContentFilterSettings = default, string homeLocation = default, string id = default, bool isAdult = default, bool isBoopingEnabled = true, bool isFriend = false, DateTime lastActivity = default, DateTime lastLogin = default, DateTime? lastMobile = default, string lastPlatform = default, string obfuscatedEmail = default, string obfuscatedPendingEmail = default, string oculusId = default, List<string> offlineFriends = default, List<string> onlineFriends = default, List<PastDisplayName> pastDisplayNames = default, string picoId = default, List<CurrentUserPlatformHistoryInner> platformHistory = default, CurrentUserPresence presence = default, string profilePicOverride = default, string profilePicOverrideThumbnail = default, string pronouns = default, List<string> pronounsHistory = default, string queuedInstance = default, bool receiveMobileInvitations = default, UserState state = default, UserStatus status = default, string statusDescription = default, bool statusFirstTime = default, List<string> statusHistory = default, Object steamDetails = default, string steamId = default, List<string> tags = default, Object twitchDetails = default, string twitchId = default, bool twoFactorAuthEnabled = default, DateTime? twoFactorAuthEnabledDate = default, bool unsubscribe = default, DateTime updatedAt = default, string userIcon = default, string userLanguage = default, string userLanguageCode = default, string username = default, bool usesGeneratedPassword = default, string viveId = default)
{
this.AcceptedTOSVersion = acceptedTOSVersion;
this.AgeVerificationStatus = ageVerificationStatus;
this.AgeVerified = ageVerified;
this.AllowAvatarCopying = allowAvatarCopying;
// Allow null values for required properties to handle unexpected API responses gracefully
this.Bio = bio;
// Allow null values for required properties to handle unexpected API responses gracefully
this.BioLinks = bioLinks;
// Allow null values for required properties to handle unexpected API responses gracefully
this.CurrentAvatar = currentAvatar;
// Allow null values for required properties to handle unexpected API responses gracefully
this.CurrentAvatarImageUrl = currentAvatarImageUrl;
// Allow null values for required properties to handle unexpected API responses gracefully
this.CurrentAvatarTags = currentAvatarTags;
// Allow null values for required properties to handle unexpected API responses gracefully
this.CurrentAvatarThumbnailImageUrl = currentAvatarThumbnailImageUrl;
this.DateJoined = dateJoined;
this.DeveloperType = developerType;
// Allow null values for required properties to handle unexpected API responses gracefully
this.DisplayName = displayName;
this.EmailVerified = emailVerified;
// Allow null values for required properties to handle unexpected API responses gracefully
this.FriendGroupNames = friendGroupNames;
// Allow null values for required properties to handle unexpected API responses gracefully
this.FriendKey = friendKey;
// Allow null values for required properties to handle unexpected API responses gracefully
this.Friends = friends;
this.HasBirthday = hasBirthday;
this.HasEmail = hasEmail;
this.HasLoggedInFromClient = hasLoggedInFromClient;
this.HasPendingEmail = hasPendingEmail;
// Allow null values for required properties to handle unexpected API responses gracefully
this.HomeLocation = homeLocation;
// Allow null values for required properties to handle unexpected API responses gracefully
this.Id = id;
this.IsAdult = isAdult;
this.IsFriend = isFriend;
this.LastLogin = lastLogin;
// Allow null values for required properties to handle unexpected API responses gracefully
this.LastMobile = lastMobile;
// Allow null values for required properties to handle unexpected API responses gracefully
this.LastPlatform = lastPlatform;
// Allow null values for required properties to handle unexpected API responses gracefully
this.ObfuscatedEmail = obfuscatedEmail;
// Allow null values for required properties to handle unexpected API responses gracefully
this.ObfuscatedPendingEmail = obfuscatedPendingEmail;
// Allow null values for required properties to handle unexpected API responses gracefully
this.OculusId = oculusId;
// Allow null values for required properties to handle unexpected API responses gracefully
this.PastDisplayNames = pastDisplayNames;
// Allow null values for required properties to handle unexpected API responses gracefully
this.ProfilePicOverride = profilePicOverride;
// Allow null values for required properties to handle unexpected API responses gracefully
this.ProfilePicOverrideThumbnail = profilePicOverrideThumbnail;
// Allow null values for required properties to handle unexpected API responses gracefully
this.Pronouns = pronouns;
// Allow null values for required properties to handle unexpected API responses gracefully
this.PronounsHistory = pronounsHistory;
this.State = state;
this.Status = status;
// Allow null values for required properties to handle unexpected API responses gracefully
this.StatusDescription = statusDescription;
this.StatusFirstTime = statusFirstTime;
// Allow null values for required properties to handle unexpected API responses gracefully
this.StatusHistory = statusHistory;
// Allow null values for required properties to handle unexpected API responses gracefully
this.SteamDetails = steamDetails;
// Allow null values for required properties to handle unexpected API responses gracefully
this.SteamId = steamId;
// Allow null values for required properties to handle unexpected API responses gracefully
this.Tags = tags;
this.TwoFactorAuthEnabled = twoFactorAuthEnabled;
this.Unsubscribe = unsubscribe;
// Allow null values for required properties to handle unexpected API responses gracefully
this.UserIcon = userIcon;
this.UsesGeneratedPassword = usesGeneratedPassword;
this.AcceptedPrivacyVersion = acceptedPrivacyVersion;
this.AccountDeletionDate = accountDeletionDate;
this.AccountDeletionLog = accountDeletionLog;
this.ActiveFriends = activeFriends;
this.AppleDetails = appleDetails;
this.AppleId = appleId;
this.AuthToken = authToken;
this.Badges = badges;
this.ContentFilters = contentFilters;
this.DiscordDetails = discordDetails;
this.DiscordId = discordId;
this.FallbackAvatar = fallbackAvatar;
this.GoogleDetails = googleDetails;
this.GoogleId = googleId;
this.HasDiscordFriendsOptOut = hasDiscordFriendsOptOut;
this.HasSharedConnectionsOptOut = hasSharedConnectionsOptOut;
this.HideContentFilterSettings = hideContentFilterSettings;
this.IsBoopingEnabled = isBoopingEnabled;
this.LastActivity = lastActivity;
this.OfflineFriends = offlineFriends;
this.OnlineFriends = onlineFriends;
this.PicoId = picoId;
this.PlatformHistory = platformHistory;
this.Presence = presence;
this.QueuedInstance = queuedInstance;
this.ReceiveMobileInvitations = receiveMobileInvitations;
this.TwitchDetails = twitchDetails;
this.TwitchId = twitchId;
this.TwoFactorAuthEnabledDate = twoFactorAuthEnabledDate;
this.UpdatedAt = updatedAt;
this.UserLanguage = userLanguage;
this.UserLanguageCode = userLanguageCode;
this.Username = username;
this.ViveId = viveId;
}
/// <summary>
/// Gets or Sets AcceptedPrivacyVersion
/// </summary>
/*
<example>0</example>
*/
[DataMember(Name = "acceptedPrivacyVersion", EmitDefaultValue = false)]
public int AcceptedPrivacyVersion { get; set; }
/// <summary>
/// Gets or Sets AcceptedTOSVersion
/// </summary>
/*
<example>7</example>
*/
[DataMember(Name = "acceptedTOSVersion", IsRequired = false, EmitDefaultValue = true)]
public int AcceptedTOSVersion { get; set; }
/// <summary>
/// Gets or Sets AccountDeletionDate
/// </summary>
[DataMember(Name = "accountDeletionDate", EmitDefaultValue = true)]
public DateOnly? AccountDeletionDate { get; set; }
/// <summary>
///
/// </summary>
/// <value> </value>
[DataMember(Name = "accountDeletionLog", EmitDefaultValue = true)]
public List<AccountDeletionLog> AccountDeletionLog { get; set; }
/// <summary>
///
/// </summary>
/// <value> </value>
[DataMember(Name = "activeFriends", EmitDefaultValue = false)]
public List<string> ActiveFriends { get; set; }
/// <summary>
/// `true` if, user is age verified (not 18+).
/// </summary>
/// <value>`true` if, user is age verified (not 18+).</value>
[DataMember(Name = "ageVerified", IsRequired = false, EmitDefaultValue = true)]
public bool AgeVerified { get; set; }
/// <summary>
/// Gets or Sets AllowAvatarCopying
/// </summary>
[DataMember(Name = "allowAvatarCopying", IsRequired = false, EmitDefaultValue = true)]
public bool AllowAvatarCopying { get; set; }
/// <summary>
/// Gets or Sets AppleDetails
/// </summary>
[DataMember(Name = "appleDetails", EmitDefaultValue = false)]
public Object AppleDetails { get; set; }
/// <summary>
/// Gets or Sets AppleId
/// </summary>
[DataMember(Name = "appleId", EmitDefaultValue = false)]
public string AppleId { get; set; }
/// <summary>
/// The auth token for NEWLY REGISTERED ACCOUNTS ONLY (/auth/register)
/// </summary>
/// <value>The auth token for NEWLY REGISTERED ACCOUNTS ONLY (/auth/register)</value>
[DataMember(Name = "authToken", EmitDefaultValue = false)]
public string AuthToken { get; set; }
/// <summary>
///
/// </summary>
/// <value> </value>
[DataMember(Name = "badges", EmitDefaultValue = false)]
public List<Badge> Badges { get; set; }
/// <summary>
/// Gets or Sets Bio
/// </summary>
[DataMember(Name = "bio", IsRequired = false, EmitDefaultValue = true)]
public string Bio { get; set; }
/// <summary>
///
/// </summary>
/// <value> </value>
[DataMember(Name = "bioLinks", IsRequired = false, EmitDefaultValue = true)]
public List<string> BioLinks { get; set; }
/// <summary>
/// These tags begin with `content_` and control content gating
/// </summary>
/// <value>These tags begin with `content_` and control content gating</value>
[DataMember(Name = "contentFilters", EmitDefaultValue = false)]
public List<string> ContentFilters { get; set; }
/// <summary>
/// Gets or Sets CurrentAvatar
/// </summary>
/*
<example>avtr_912d66a4-4714-43b8-8407-7de2cafbf55b</example>
*/
[DataMember(Name = "currentAvatar", IsRequired = false, EmitDefaultValue = true)]
public string CurrentAvatar { get; set; }
/// <summary>
/// When profilePicOverride is not empty, use it instead.
/// </summary>
/// <value>When profilePicOverride is not empty, use it instead.</value>
/*
<example>https://api.vrchat.cloud/api/1/file/file_ae46d521-7281-4b38-b365-804b32a1d6a7/1/file</example>
*/
[DataMember(Name = "currentAvatarImageUrl", IsRequired = false, EmitDefaultValue = true)]
public string CurrentAvatarImageUrl { get; set; }
/// <summary>
/// Gets or Sets CurrentAvatarTags
/// </summary>
[DataMember(Name = "currentAvatarTags", IsRequired = false, EmitDefaultValue = true)]
public List<string> CurrentAvatarTags { get; set; }
/// <summary>
/// When profilePicOverride is not empty, use it instead.
/// </summary>
/// <value>When profilePicOverride is not empty, use it instead.</value>
/*
<example>https://api.vrchat.cloud/api/1/image/file_aae83ed9-d42d-4d72-9f4b-9f1e41ed17e1/1/256</example>
*/
[DataMember(Name = "currentAvatarThumbnailImageUrl", IsRequired = false, EmitDefaultValue = true)]
public string CurrentAvatarThumbnailImageUrl { get; set; }
/// <summary>
/// Gets or Sets DateJoined
/// </summary>
[DataMember(Name = "date_joined", IsRequired = false, EmitDefaultValue = true)]
public DateOnly DateJoined { get; set; }
/// <summary>
/// Gets or Sets DiscordDetails
/// </summary>
[DataMember(Name = "discordDetails", EmitDefaultValue = false)]
public DiscordDetails DiscordDetails { get; set; }
/// <summary>
/// https://discord.com/developers/docs/reference#snowflakes
/// </summary>
/// <value>https://discord.com/developers/docs/reference#snowflakes</value>
/*
<example>1280064052206370848</example>
*/
[DataMember(Name = "discordId", EmitDefaultValue = false)]
public string DiscordId { get; set; }
/// <summary>
/// Gets or Sets DisplayName
/// </summary>
[DataMember(Name = "displayName", IsRequired = false, EmitDefaultValue = true)]
public string DisplayName { get; set; }
/// <summary>
/// Gets or Sets EmailVerified
/// </summary>
[DataMember(Name = "emailVerified", IsRequired = false, EmitDefaultValue = true)]
public bool EmailVerified { get; set; }
/// <summary>
/// Gets or Sets FallbackAvatar
/// </summary>
/*
<example>avtr_912d66a4-4714-43b8-8407-7de2cafbf55b</example>
*/
[DataMember(Name = "fallbackAvatar", EmitDefaultValue = false)]
public string FallbackAvatar { get; set; }
/// <summary>
/// Always empty array.
/// </summary>
/// <value>Always empty array.</value>
[DataMember(Name = "friendGroupNames", IsRequired = false, EmitDefaultValue = true)]
[Obsolete]
public List<string> FriendGroupNames { get; set; }
/// <summary>
/// Gets or Sets FriendKey
/// </summary>
[DataMember(Name = "friendKey", IsRequired = false, EmitDefaultValue = true)]
public string FriendKey { get; set; }
/// <summary>
/// Gets or Sets Friends
/// </summary>
[DataMember(Name = "friends", IsRequired = false, EmitDefaultValue = true)]
public List<string> Friends { get; set; }
/// <summary>
/// Gets or Sets GoogleDetails
/// </summary>
[DataMember(Name = "googleDetails", EmitDefaultValue = false)]
public Object GoogleDetails { get; set; }
/// <summary>
/// Gets or Sets GoogleId
/// </summary>
[DataMember(Name = "googleId", EmitDefaultValue = false)]
public string GoogleId { get; set; }
/// <summary>
/// Gets or Sets HasBirthday
/// </summary>
[DataMember(Name = "hasBirthday", IsRequired = false, EmitDefaultValue = true)]
public bool HasBirthday { get; set; }
/// <summary>
/// Gets or Sets HasDiscordFriendsOptOut
/// </summary>
[DataMember(Name = "hasDiscordFriendsOptOut", EmitDefaultValue = true)]
public bool HasDiscordFriendsOptOut { get; set; }
/// <summary>
/// Gets or Sets HasEmail
/// </summary>
[DataMember(Name = "hasEmail", IsRequired = false, EmitDefaultValue = true)]
public bool HasEmail { get; set; }
/// <summary>
/// Gets or Sets HasLoggedInFromClient
/// </summary>
[DataMember(Name = "hasLoggedInFromClient", IsRequired = false, EmitDefaultValue = true)]
public bool HasLoggedInFromClient { get; set; }
/// <summary>
/// Gets or Sets HasPendingEmail
/// </summary>
[DataMember(Name = "hasPendingEmail", IsRequired = false, EmitDefaultValue = true)]
public bool HasPendingEmail { get; set; }
/// <summary>
/// Gets or Sets HasSharedConnectionsOptOut
/// </summary>
[DataMember(Name = "hasSharedConnectionsOptOut", EmitDefaultValue = true)]
public bool HasSharedConnectionsOptOut { get; set; }
/// <summary>
/// Gets or Sets HideContentFilterSettings
/// </summary>
[DataMember(Name = "hideContentFilterSettings", EmitDefaultValue = true)]
public bool HideContentFilterSettings { get; set; }
/// <summary>
/// WorldID be \"offline\" on User profiles if you are not friends with that user.
/// </summary>
/// <value>WorldID be \"offline\" on User profiles if you are not friends with that user.</value>
/*
<example>wrld_4432ea9b-729c-46e3-8eaf-846aa0a37fdd</example>
*/
[DataMember(Name = "homeLocation", IsRequired = false, EmitDefaultValue = true)]
public string HomeLocation { get; set; }
/// <summary>
/// A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
/// </summary>
/// <value>A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.</value>
/*
<example>usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469</example>
*/
[DataMember(Name = "id", IsRequired = false, EmitDefaultValue = true)]
public string Id { get; set; }
/// <summary>
/// Gets or Sets IsAdult
/// </summary>
[DataMember(Name = "isAdult", IsRequired = false, EmitDefaultValue = true)]
public bool IsAdult { get; set; }
/// <summary>
/// Gets or Sets IsBoopingEnabled
/// </summary>
[DataMember(Name = "isBoopingEnabled", EmitDefaultValue = true)]
public bool IsBoopingEnabled { get; set; }
/// <summary>
/// Gets or Sets IsFriend
/// </summary>
[DataMember(Name = "isFriend", IsRequired = false, EmitDefaultValue = true)]
public bool IsFriend { get; set; }
/// <summary>
/// Gets or Sets LastActivity
/// </summary>
[DataMember(Name = "last_activity", EmitDefaultValue = false)]
public DateTime LastActivity { get; set; }
/// <summary>
/// Gets or Sets LastLogin
/// </summary>
[DataMember(Name = "last_login", IsRequired = false, EmitDefaultValue = true)]
public DateTime LastLogin { get; set; }
/// <summary>
/// Gets or Sets LastMobile
/// </summary>
[DataMember(Name = "last_mobile", IsRequired = false, EmitDefaultValue = true)]
public DateTime? LastMobile { get; set; }
/// <summary>
/// This is normally `android`, `ios`, `standalonewindows`, `web`, or the empty value ``, but also supposedly can be any random Unity version such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
/// </summary>
/// <value>This is normally `android`, `ios`, `standalonewindows`, `web`, or the empty value ``, but also supposedly can be any random Unity version such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.</value>
/*
<example>standalonewindows</example>
*/
[DataMember(Name = "last_platform", IsRequired = false, EmitDefaultValue = true)]
public string LastPlatform { get; set; }
/// <summary>
/// Gets or Sets ObfuscatedEmail
/// </summary>
[DataMember(Name = "obfuscatedEmail", IsRequired = false, EmitDefaultValue = true)]
public string ObfuscatedEmail { get; set; }
/// <summary>
/// Gets or Sets ObfuscatedPendingEmail
/// </summary>
[DataMember(Name = "obfuscatedPendingEmail", IsRequired = false, EmitDefaultValue = true)]
public string ObfuscatedPendingEmail { get; set; }
/// <summary>
/// Gets or Sets OculusId
/// </summary>
[DataMember(Name = "oculusId", IsRequired = false, EmitDefaultValue = true)]
public string OculusId { get; set; }
/// <summary>
/// Gets or Sets OfflineFriends
/// </summary>
[DataMember(Name = "offlineFriends", EmitDefaultValue = false)]
public List<string> OfflineFriends { get; set; }
/// <summary>
/// Gets or Sets OnlineFriends
/// </summary>
[DataMember(Name = "onlineFriends", EmitDefaultValue = false)]
public List<string> OnlineFriends { get; set; }
/// <summary>
///
/// </summary>
/// <value> </value>
[DataMember(Name = "pastDisplayNames", IsRequired = false, EmitDefaultValue = true)]
public List<PastDisplayName> PastDisplayNames { get; set; }
/// <summary>
/// Gets or Sets PicoId
/// </summary>
[DataMember(Name = "picoId", EmitDefaultValue = false)]
public string PicoId { get; set; }
/// <summary>
/// Gets or Sets PlatformHistory
/// </summary>
[DataMember(Name = "platform_history", EmitDefaultValue = false)]
public List<CurrentUserPlatformHistoryInner> PlatformHistory { get; set; }
/// <summary>
/// Gets or Sets Presence
/// </summary>
[DataMember(Name = "presence", EmitDefaultValue = false)]
public CurrentUserPresence Presence { get; set; }
/// <summary>
/// Gets or Sets ProfilePicOverride
/// </summary>
[DataMember(Name = "profilePicOverride", IsRequired = false, EmitDefaultValue = true)]
public string ProfilePicOverride { get; set; }
/// <summary>
/// Gets or Sets ProfilePicOverrideThumbnail
/// </summary>
[DataMember(Name = "profilePicOverrideThumbnail", IsRequired = false, EmitDefaultValue = true)]
public string ProfilePicOverrideThumbnail { get; set; }
/// <summary>
/// Gets or Sets Pronouns
/// </summary>
[DataMember(Name = "pronouns", IsRequired = false, EmitDefaultValue = true)]
public string Pronouns { get; set; }
/// <summary>
/// Gets or Sets PronounsHistory
/// </summary>
[DataMember(Name = "pronounsHistory", IsRequired = false, EmitDefaultValue = true)]
public List<string> PronounsHistory { get; set; }
/// <summary>
/// Gets or Sets QueuedInstance
/// </summary>
[DataMember(Name = "queuedInstance", EmitDefaultValue = true)]
public string QueuedInstance { get; set; }
/// <summary>
/// Gets or Sets ReceiveMobileInvitations
/// </summary>
[DataMember(Name = "receiveMobileInvitations", EmitDefaultValue = true)]
public bool ReceiveMobileInvitations { get; set; }
/// <summary>
/// Gets or Sets StatusDescription
/// </summary>
[DataMember(Name = "statusDescription", IsRequired = false, EmitDefaultValue = true)]
public string StatusDescription { get; set; }
/// <summary>
/// Gets or Sets StatusFirstTime
/// </summary>
[DataMember(Name = "statusFirstTime", IsRequired = false, EmitDefaultValue = true)]
public bool StatusFirstTime { get; set; }
/// <summary>
/// Gets or Sets StatusHistory
/// </summary>
[DataMember(Name = "statusHistory", IsRequired = false, EmitDefaultValue = true)]
public List<string> StatusHistory { get; set; }
/// <summary>
/// Gets or Sets SteamDetails
/// </summary>
[DataMember(Name = "steamDetails", IsRequired = false, EmitDefaultValue = true)]
public Object SteamDetails { get; set; }
/// <summary>
/// Gets or Sets SteamId
/// </summary>
[DataMember(Name = "steamId", IsRequired = false, EmitDefaultValue = true)]
public string SteamId { get; set; }
/// <summary>
/// Gets or Sets Tags
/// </summary>
[DataMember(Name = "tags", IsRequired = false, EmitDefaultValue = true)]
public List<string> Tags { get; set; }
/// <summary>
/// Gets or Sets TwitchDetails
/// </summary>
[DataMember(Name = "twitchDetails", EmitDefaultValue = false)]
public Object TwitchDetails { get; set; }
/// <summary>
/// Gets or Sets TwitchId
/// </summary>
[DataMember(Name = "twitchId", EmitDefaultValue = false)]
public string TwitchId { get; set; }
/// <summary>
/// Gets or Sets TwoFactorAuthEnabled
/// </summary>
[DataMember(Name = "twoFactorAuthEnabled", IsRequired = false, EmitDefaultValue = true)]
public bool TwoFactorAuthEnabled { get; set; }
/// <summary>
/// Gets or Sets TwoFactorAuthEnabledDate
/// </summary>
[DataMember(Name = "twoFactorAuthEnabledDate", EmitDefaultValue = true)]
public DateTime? TwoFactorAuthEnabledDate { get; set; }
/// <summary>
/// Gets or Sets Unsubscribe
/// </summary>
[DataMember(Name = "unsubscribe", IsRequired = false, EmitDefaultValue = true)]
public bool Unsubscribe { get; set; }
/// <summary>
/// Gets or Sets UpdatedAt
/// </summary>
[DataMember(Name = "updated_at", EmitDefaultValue = false)]
public DateTime UpdatedAt { get; set; }
/// <summary>
/// Gets or Sets UserIcon
/// </summary>
[DataMember(Name = "userIcon", IsRequired = false, EmitDefaultValue = true)]
public string UserIcon { get; set; }
/// <summary>
/// An array of two-factor authentication methods available to use to with two factor authentication.
/// </summary>
[DataMember(Name = "requiresTwoFactorAuth", IsRequired = false, EmitDefaultValue = true)]
public List<string> RequiresTwoFactorAuth { get; set; }
/// <summary>
/// Gets or Sets UserLanguage
/// </summary>
[DataMember(Name = "userLanguage", EmitDefaultValue = true)]
public string UserLanguage { get; set; }
/// <summary>
/// Gets or Sets UserLanguageCode
/// </summary>
[DataMember(Name = "userLanguageCode", EmitDefaultValue = true)]
public string UserLanguageCode { get; set; }
/// <summary>
/// -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
/// </summary>
/// <value>-| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).</value>
[DataMember(Name = "username", EmitDefaultValue = false)]
[Obsolete]
public string Username { get; set; }
/// <summary>
/// Gets or Sets UsesGeneratedPassword
/// </summary>
[DataMember(Name = "usesGeneratedPassword", IsRequired = false, EmitDefaultValue = true)]
public bool UsesGeneratedPassword { get; set; }
/// <summary>
/// Gets or Sets ViveId
/// </summary>
[DataMember(Name = "viveId", EmitDefaultValue = false)]
public string ViveId { get; set; }
/// <summary>
/// Returns the string presentation of the object
/// </summary>
/// <returns>String presentation of the object</returns>
public override string ToString()
{
StringBuilder sb = new StringBuilder();
sb.Append("class CurrentUser {\n");
sb.Append(" AcceptedPrivacyVersion: ").Append(AcceptedPrivacyVersion).Append("\n");
sb.Append(" AcceptedTOSVersion: ").Append(AcceptedTOSVersion).Append("\n");
sb.Append(" AccountDeletionDate: ").Append(AccountDeletionDate).Append("\n");
sb.Append(" AccountDeletionLog: ").Append(AccountDeletionLog).Append("\n");
sb.Append(" ActiveFriends: ").Append(ActiveFriends).Append("\n");
sb.Append(" AgeVerificationStatus: ").Append(AgeVerificationStatus).Append("\n");
sb.Append(" AgeVerified: ").Append(AgeVerified).Append("\n");
sb.Append(" AllowAvatarCopying: ").Append(AllowAvatarCopying).Append("\n");
sb.Append(" AppleDetails: ").Append(AppleDetails).Append("\n");
sb.Append(" AppleId: ").Append(AppleId).Append("\n");
sb.Append(" AuthToken: ").Append(AuthToken).Append("\n");
sb.Append(" Badges: ").Append(Badges).Append("\n");
sb.Append(" Bio: ").Append(Bio).Append("\n");
sb.Append(" BioLinks: ").Append(BioLinks).Append("\n");
sb.Append(" ContentFilters: ").Append(ContentFilters).Append("\n");
sb.Append(" CurrentAvatar: ").Append(CurrentAvatar).Append("\n");
sb.Append(" CurrentAvatarImageUrl: ").Append(CurrentAvatarImageUrl).Append("\n");
sb.Append(" CurrentAvatarTags: ").Append(CurrentAvatarTags).Append("\n");
sb.Append(" CurrentAvatarThumbnailImageUrl: ").Append(CurrentAvatarThumbnailImageUrl).Append("\n");
sb.Append(" DateJoined: ").Append(DateJoined).Append("\n");
sb.Append(" DeveloperType: ").Append(DeveloperType).Append("\n");
sb.Append(" DiscordDetails: ").Append(DiscordDetails).Append("\n");
sb.Append(" DiscordId: ").Append(DiscordId).Append("\n");
sb.Append(" DisplayName: ").Append(DisplayName).Append("\n");
sb.Append(" EmailVerified: ").Append(EmailVerified).Append("\n");
sb.Append(" FallbackAvatar: ").Append(FallbackAvatar).Append("\n");
sb.Append(" FriendGroupNames: ").Append(FriendGroupNames).Append("\n");
sb.Append(" FriendKey: ").Append(FriendKey).Append("\n");
sb.Append(" Friends: ").Append(Friends).Append("\n");
sb.Append(" GoogleDetails: ").Append(GoogleDetails).Append("\n");
sb.Append(" GoogleId: ").Append(GoogleId).Append("\n");
sb.Append(" HasBirthday: ").Append(HasBirthday).Append("\n");
sb.Append(" HasDiscordFriendsOptOut: ").Append(HasDiscordFriendsOptOut).Append("\n");
sb.Append(" HasEmail: ").Append(HasEmail).Append("\n");
sb.Append(" HasLoggedInFromClient: ").Append(HasLoggedInFromClient).Append("\n");
sb.Append(" HasPendingEmail: ").Append(HasPendingEmail).Append("\n");
sb.Append(" HasSharedConnectionsOptOut: ").Append(HasSharedConnectionsOptOut).Append("\n");
sb.Append(" HideContentFilterSettings: ").Append(HideContentFilterSettings).Append("\n");
sb.Append(" HomeLocation: ").Append(HomeLocation).Append("\n");
sb.Append(" Id: ").Append(Id).Append("\n");
sb.Append(" IsAdult: ").Append(IsAdult).Append("\n");
sb.Append(" IsBoopingEnabled: ").Append(IsBoopingEnabled).Append("\n");
sb.Append(" IsFriend: ").Append(IsFriend).Append("\n");
sb.Append(" LastActivity: ").Append(LastActivity).Append("\n");
sb.Append(" LastLogin: ").Append(LastLogin).Append("\n");
sb.Append(" LastMobile: ").Append(LastMobile).Append("\n");
sb.Append(" LastPlatform: ").Append(LastPlatform).Append("\n");
sb.Append(" ObfuscatedEmail: ").Append(ObfuscatedEmail).Append("\n");
sb.Append(" ObfuscatedPendingEmail: ").Append(ObfuscatedPendingEmail).Append("\n");
sb.Append(" OculusId: ").Append(OculusId).Append("\n");
sb.Append(" OfflineFriends: ").Append(OfflineFriends).Append("\n");
sb.Append(" OnlineFriends: ").Append(OnlineFriends).Append("\n");
sb.Append(" PastDisplayNames: ").Append(PastDisplayNames).Append("\n");
sb.Append(" PicoId: ").Append(PicoId).Append("\n");
sb.Append(" PlatformHistory: ").Append(PlatformHistory).Append("\n");
sb.Append(" Presence: ").Append(Presence).Append("\n");
sb.Append(" ProfilePicOverride: ").Append(ProfilePicOverride).Append("\n");
sb.Append(" ProfilePicOverrideThumbnail: ").Append(ProfilePicOverrideThumbnail).Append("\n");
sb.Append(" Pronouns: ").Append(Pronouns).Append("\n");
sb.Append(" PronounsHistory: ").Append(PronounsHistory).Append("\n");
sb.Append(" QueuedInstance: ").Append(QueuedInstance).Append("\n");
sb.Append(" ReceiveMobileInvitations: ").Append(ReceiveMobileInvitations).Append("\n");
sb.Append(" State: ").Append(State).Append("\n");
sb.Append(" Status: ").Append(Status).Append("\n");
sb.Append(" StatusDescription: ").Append(StatusDescription).Append("\n");
sb.Append(" StatusFirstTime: ").Append(StatusFirstTime).Append("\n");
sb.Append(" StatusHistory: ").Append(StatusHistory).Append("\n");
sb.Append(" SteamDetails: ").Append(SteamDetails).Append("\n");
sb.Append(" SteamId: ").Append(SteamId).Append("\n");
sb.Append(" Tags: ").Append(Tags).Append("\n");
sb.Append(" TwitchDetails: ").Append(TwitchDetails).Append("\n");
sb.Append(" TwitchId: ").Append(TwitchId).Append("\n");
sb.Append(" TwoFactorAuthEnabled: ").Append(TwoFactorAuthEnabled).Append("\n");
sb.Append(" TwoFactorAuthEnabledDate: ").Append(TwoFactorAuthEnabledDate).Append("\n");
sb.Append(" Unsubscribe: ").Append(Unsubscribe).Append("\n");
sb.Append(" UpdatedAt: ").Append(UpdatedAt).Append("\n");
sb.Append(" UserIcon: ").Append(UserIcon).Append("\n");
sb.Append(" UserLanguage: ").Append(UserLanguage).Append("\n");
sb.Append(" UserLanguageCode: ").Append(UserLanguageCode).Append("\n");
sb.Append(" Username: ").Append(Username).Append("\n");
sb.Append(" UsesGeneratedPassword: ").Append(UsesGeneratedPassword).Append("\n");
sb.Append(" ViveId: ").Append(ViveId).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
/// <summary>
/// Returns the JSON string presentation of the object
/// </summary>
/// <returns>JSON string presentation of the object</returns>
public virtual string ToJson()
{
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
}
/// <summary>
/// Returns true if objects are equal
/// </summary>
/// <param name="input">Object to be compared</param>
/// <returns>Boolean</returns>
public override bool Equals(object input)
{
return this.Equals(input as CurrentUser);
}
/// <summary>
/// Returns true if CurrentUser instances are equal
/// </summary>
/// <param name="input">Instance of CurrentUser to be compared</param>
/// <returns>Boolean</returns>
public bool Equals(CurrentUser input)
{
if (input == null)
{
return false;
}
return
(
this.AcceptedPrivacyVersion == input.AcceptedPrivacyVersion ||
this.AcceptedPrivacyVersion.Equals(input.AcceptedPrivacyVersion)
) &&
(
this.AcceptedTOSVersion == input.AcceptedTOSVersion ||
this.AcceptedTOSVersion.Equals(input.AcceptedTOSVersion)
) &&
(
this.AccountDeletionDate == input.AccountDeletionDate ||
(this.AccountDeletionDate != null &&
this.AccountDeletionDate.Equals(input.AccountDeletionDate))
) &&
(
this.AccountDeletionLog == input.AccountDeletionLog ||
this.AccountDeletionLog != null &&
input.AccountDeletionLog != null &&
this.AccountDeletionLog.SequenceEqual(input.AccountDeletionLog)
) &&
(
this.ActiveFriends == input.ActiveFriends ||
this.ActiveFriends != null &&
input.ActiveFriends != null &&
this.ActiveFriends.SequenceEqual(input.ActiveFriends)
) &&
(
this.AgeVerificationStatus == input.AgeVerificationStatus ||
this.AgeVerificationStatus.Equals(input.AgeVerificationStatus)
) &&
(
this.AgeVerified == input.AgeVerified ||
this.AgeVerified.Equals(input.AgeVerified)
) &&
(
this.AllowAvatarCopying == input.AllowAvatarCopying ||
this.AllowAvatarCopying.Equals(input.AllowAvatarCopying)
) &&
(
this.AppleDetails == input.AppleDetails ||
(this.AppleDetails != null &&
this.AppleDetails.Equals(input.AppleDetails))
) &&
(
this.AppleId == input.AppleId ||
(this.AppleId != null &&
this.AppleId.Equals(input.AppleId))
) &&
(
this.AuthToken == input.AuthToken ||
(this.AuthToken != null &&
this.AuthToken.Equals(input.AuthToken))
) &&
(
this.Badges == input.Badges ||
this.Badges != null &&
input.Badges != null &&
this.Badges.SequenceEqual(input.Badges)
) &&
(
this.Bio == input.Bio ||
(this.Bio != null &&
this.Bio.Equals(input.Bio))
) &&
(
this.BioLinks == input.BioLinks ||
this.BioLinks != null &&
input.BioLinks != null &&
this.BioLinks.SequenceEqual(input.BioLinks)
) &&
(
this.ContentFilters == input.ContentFilters ||
this.ContentFilters != null &&
input.ContentFilters != null &&
this.ContentFilters.SequenceEqual(input.ContentFilters)
) &&
(
this.CurrentAvatar == input.CurrentAvatar ||
(this.CurrentAvatar != null &&
this.CurrentAvatar.Equals(input.CurrentAvatar))
) &&
(
this.CurrentAvatarImageUrl == input.CurrentAvatarImageUrl ||
(this.CurrentAvatarImageUrl != null &&
this.CurrentAvatarImageUrl.Equals(input.CurrentAvatarImageUrl))
) &&
(
this.CurrentAvatarTags == input.CurrentAvatarTags ||
this.CurrentAvatarTags != null &&
input.CurrentAvatarTags != null &&
this.CurrentAvatarTags.SequenceEqual(input.CurrentAvatarTags)
) &&