All Verbs | /my-session |
---|
import 'package:servicestack/servicestack.dart';
abstract class TechnologyStackBase
{
int? id;
String? name;
String? vendorName;
String? description;
String? appUrl;
String? screenshotUrl;
DateTime? created;
String? createdBy;
DateTime? lastModified;
String? lastModifiedBy;
bool? isLocked;
String? ownerId;
String? slug;
// @StringLength(2147483647)
String? details;
// @StringLength(2147483647)
String? detailsHtml;
DateTime? lastStatusUpdate;
int? organizationId;
int? commentsPostId;
int? viewCount;
int? favCount;
TechnologyStackBase({this.id,this.name,this.vendorName,this.description,this.appUrl,this.screenshotUrl,this.created,this.createdBy,this.lastModified,this.lastModifiedBy,this.isLocked,this.ownerId,this.slug,this.details,this.detailsHtml,this.lastStatusUpdate,this.organizationId,this.commentsPostId,this.viewCount,this.favCount});
TechnologyStackBase.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
name = json['name'];
vendorName = json['vendorName'];
description = json['description'];
appUrl = json['appUrl'];
screenshotUrl = json['screenshotUrl'];
created = JsonConverters.fromJson(json['created'],'DateTime',context!);
createdBy = json['createdBy'];
lastModified = JsonConverters.fromJson(json['lastModified'],'DateTime',context!);
lastModifiedBy = json['lastModifiedBy'];
isLocked = json['isLocked'];
ownerId = json['ownerId'];
slug = json['slug'];
details = json['details'];
detailsHtml = json['detailsHtml'];
lastStatusUpdate = JsonConverters.fromJson(json['lastStatusUpdate'],'DateTime',context!);
organizationId = json['organizationId'];
commentsPostId = json['commentsPostId'];
viewCount = json['viewCount'];
favCount = json['favCount'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'name': name,
'vendorName': vendorName,
'description': description,
'appUrl': appUrl,
'screenshotUrl': screenshotUrl,
'created': JsonConverters.toJson(created,'DateTime',context!),
'createdBy': createdBy,
'lastModified': JsonConverters.toJson(lastModified,'DateTime',context!),
'lastModifiedBy': lastModifiedBy,
'isLocked': isLocked,
'ownerId': ownerId,
'slug': slug,
'details': details,
'detailsHtml': detailsHtml,
'lastStatusUpdate': JsonConverters.toJson(lastStatusUpdate,'DateTime',context!),
'organizationId': organizationId,
'commentsPostId': commentsPostId,
'viewCount': viewCount,
'favCount': favCount
};
getTypeName() => "TechnologyStackBase";
TypeContext? context = _ctx;
}
class TechnologyStack extends TechnologyStackBase implements IConvertible
{
TechnologyStack();
TechnologyStack.fromJson(Map<String, dynamic> json) : super.fromJson(json);
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
return this;
}
Map<String, dynamic> toJson() => super.toJson();
getTypeName() => "TechnologyStack";
TypeContext? context = _ctx;
}
enum TechnologyTier
{
ProgrammingLanguage,
Client,
Http,
Server,
Data,
SoftwareInfrastructure,
OperatingSystem,
HardwareInfrastructure,
ThirdPartyServices,
}
abstract class TechnologyBase
{
int? id;
String? name;
String? vendorName;
String? vendorUrl;
String? productUrl;
String? logoUrl;
String? description;
DateTime? created;
String? createdBy;
DateTime? lastModified;
String? lastModifiedBy;
String? ownerId;
String? slug;
bool? logoApproved;
bool? isLocked;
TechnologyTier? tier;
DateTime? lastStatusUpdate;
int? organizationId;
int? commentsPostId;
int? viewCount;
int? favCount;
TechnologyBase({this.id,this.name,this.vendorName,this.vendorUrl,this.productUrl,this.logoUrl,this.description,this.created,this.createdBy,this.lastModified,this.lastModifiedBy,this.ownerId,this.slug,this.logoApproved,this.isLocked,this.tier,this.lastStatusUpdate,this.organizationId,this.commentsPostId,this.viewCount,this.favCount});
TechnologyBase.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
name = json['name'];
vendorName = json['vendorName'];
vendorUrl = json['vendorUrl'];
productUrl = json['productUrl'];
logoUrl = json['logoUrl'];
description = json['description'];
created = JsonConverters.fromJson(json['created'],'DateTime',context!);
createdBy = json['createdBy'];
lastModified = JsonConverters.fromJson(json['lastModified'],'DateTime',context!);
lastModifiedBy = json['lastModifiedBy'];
ownerId = json['ownerId'];
slug = json['slug'];
logoApproved = json['logoApproved'];
isLocked = json['isLocked'];
tier = JsonConverters.fromJson(json['tier'],'TechnologyTier',context!);
lastStatusUpdate = JsonConverters.fromJson(json['lastStatusUpdate'],'DateTime',context!);
organizationId = json['organizationId'];
commentsPostId = json['commentsPostId'];
viewCount = json['viewCount'];
favCount = json['favCount'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'name': name,
'vendorName': vendorName,
'vendorUrl': vendorUrl,
'productUrl': productUrl,
'logoUrl': logoUrl,
'description': description,
'created': JsonConverters.toJson(created,'DateTime',context!),
'createdBy': createdBy,
'lastModified': JsonConverters.toJson(lastModified,'DateTime',context!),
'lastModifiedBy': lastModifiedBy,
'ownerId': ownerId,
'slug': slug,
'logoApproved': logoApproved,
'isLocked': isLocked,
'tier': JsonConverters.toJson(tier,'TechnologyTier',context!),
'lastStatusUpdate': JsonConverters.toJson(lastStatusUpdate,'DateTime',context!),
'organizationId': organizationId,
'commentsPostId': commentsPostId,
'viewCount': viewCount,
'favCount': favCount
};
getTypeName() => "TechnologyBase";
TypeContext? context = _ctx;
}
class Technology extends TechnologyBase implements IConvertible
{
Technology();
Technology.fromJson(Map<String, dynamic> json) : super.fromJson(json);
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
return this;
}
Map<String, dynamic> toJson() => super.toJson();
getTypeName() => "Technology";
TypeContext? context = _ctx;
}
class UserActivity implements IConvertible
{
int? id;
String? userName;
int? karma;
int? technologyCount;
int? techStacksCount;
int? postsCount;
int? postUpVotes;
int? postDownVotes;
int? commentUpVotes;
int? commentDownVotes;
int? postCommentsCount;
int? pinnedCommentCount;
int? postReportCount;
int? postCommentReportCount;
DateTime? created;
DateTime? modified;
UserActivity({this.id,this.userName,this.karma,this.technologyCount,this.techStacksCount,this.postsCount,this.postUpVotes,this.postDownVotes,this.commentUpVotes,this.commentDownVotes,this.postCommentsCount,this.pinnedCommentCount,this.postReportCount,this.postCommentReportCount,this.created,this.modified});
UserActivity.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
userName = json['userName'];
karma = json['karma'];
technologyCount = json['technologyCount'];
techStacksCount = json['techStacksCount'];
postsCount = json['postsCount'];
postUpVotes = json['postUpVotes'];
postDownVotes = json['postDownVotes'];
commentUpVotes = json['commentUpVotes'];
commentDownVotes = json['commentDownVotes'];
postCommentsCount = json['postCommentsCount'];
pinnedCommentCount = json['pinnedCommentCount'];
postReportCount = json['postReportCount'];
postCommentReportCount = json['postCommentReportCount'];
created = JsonConverters.fromJson(json['created'],'DateTime',context!);
modified = JsonConverters.fromJson(json['modified'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'userName': userName,
'karma': karma,
'technologyCount': technologyCount,
'techStacksCount': techStacksCount,
'postsCount': postsCount,
'postUpVotes': postUpVotes,
'postDownVotes': postDownVotes,
'commentUpVotes': commentUpVotes,
'commentDownVotes': commentDownVotes,
'postCommentsCount': postCommentsCount,
'pinnedCommentCount': pinnedCommentCount,
'postReportCount': postReportCount,
'postCommentReportCount': postCommentReportCount,
'created': JsonConverters.toJson(created,'DateTime',context!),
'modified': JsonConverters.toJson(modified,'DateTime',context!)
};
getTypeName() => "UserActivity";
TypeContext? context = _ctx;
}
class OrganizationMember implements IConvertible
{
int? id;
int? organizationId;
int? userId;
String? userName;
bool? isOwner;
bool? isModerator;
bool? denyAll;
bool? denyPosts;
bool? denyComments;
String? notes;
OrganizationMember({this.id,this.organizationId,this.userId,this.userName,this.isOwner,this.isModerator,this.denyAll,this.denyPosts,this.denyComments,this.notes});
OrganizationMember.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
organizationId = json['organizationId'];
userId = json['userId'];
userName = json['userName'];
isOwner = json['isOwner'];
isModerator = json['isModerator'];
denyAll = json['denyAll'];
denyPosts = json['denyPosts'];
denyComments = json['denyComments'];
notes = json['notes'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'organizationId': organizationId,
'userId': userId,
'userName': userName,
'isOwner': isOwner,
'isModerator': isModerator,
'denyAll': denyAll,
'denyPosts': denyPosts,
'denyComments': denyComments,
'notes': notes
};
getTypeName() => "OrganizationMember";
TypeContext? context = _ctx;
}
class OrganizationMemberInvite implements IConvertible
{
int? id;
int? organizationId;
int? userId;
String? userName;
DateTime? dismissed;
OrganizationMemberInvite({this.id,this.organizationId,this.userId,this.userName,this.dismissed});
OrganizationMemberInvite.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
organizationId = json['organizationId'];
userId = json['userId'];
userName = json['userName'];
dismissed = JsonConverters.fromJson(json['dismissed'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'organizationId': organizationId,
'userId': userId,
'userName': userName,
'dismissed': JsonConverters.toJson(dismissed,'DateTime',context!)
};
getTypeName() => "OrganizationMemberInvite";
TypeContext? context = _ctx;
}
class OrganizationSubscription implements IConvertible
{
int? id;
int? organizationId;
int? userId;
String? userName;
List<String>? postTypes;
int? frequencyDays;
int? lastSyncedId;
DateTime? lastSynced;
DateTime? created;
OrganizationSubscription({this.id,this.organizationId,this.userId,this.userName,this.postTypes,this.frequencyDays,this.lastSyncedId,this.lastSynced,this.created});
OrganizationSubscription.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
organizationId = json['organizationId'];
userId = json['userId'];
userName = json['userName'];
postTypes = JsonConverters.fromJson(json['postTypes'],'List<String>',context!);
frequencyDays = json['frequencyDays'];
lastSyncedId = json['lastSyncedId'];
lastSynced = JsonConverters.fromJson(json['lastSynced'],'DateTime',context!);
created = JsonConverters.fromJson(json['created'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'organizationId': organizationId,
'userId': userId,
'userName': userName,
'postTypes': JsonConverters.toJson(postTypes,'List<String>',context!),
'frequencyDays': frequencyDays,
'lastSyncedId': lastSyncedId,
'lastSynced': JsonConverters.toJson(lastSynced,'DateTime',context!),
'created': JsonConverters.toJson(created,'DateTime',context!)
};
getTypeName() => "OrganizationSubscription";
TypeContext? context = _ctx;
}
class SessionInfoResponse implements IConvertible
{
DateTime? created;
String? id;
String? referrerUrl;
String? userAuthId;
String? userAuthName;
String? userName;
String? displayName;
String? firstName;
String? lastName;
String? email;
DateTime? createdAt;
DateTime? lastModified;
List<String>? roles;
List<String>? permissions;
bool? isAuthenticated;
String? authProvider;
String? profileUrl;
String? githubProfileUrl;
String? twitterProfileUrl;
String? accessToken;
String? avatarUrl;
List<TechnologyStack>? techStacks;
List<TechnologyStack>? favoriteTechStacks;
List<Technology>? favoriteTechnologies;
UserActivity? userActivity;
List<OrganizationMember>? members;
List<OrganizationMemberInvite>? memberInvites;
List<OrganizationSubscription>? subscriptions;
ResponseStatus? responseStatus;
SessionInfoResponse({this.created,this.id,this.referrerUrl,this.userAuthId,this.userAuthName,this.userName,this.displayName,this.firstName,this.lastName,this.email,this.createdAt,this.lastModified,this.roles,this.permissions,this.isAuthenticated,this.authProvider,this.profileUrl,this.githubProfileUrl,this.twitterProfileUrl,this.accessToken,this.avatarUrl,this.techStacks,this.favoriteTechStacks,this.favoriteTechnologies,this.userActivity,this.members,this.memberInvites,this.subscriptions,this.responseStatus});
SessionInfoResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
created = JsonConverters.fromJson(json['created'],'DateTime',context!);
id = json['id'];
referrerUrl = json['referrerUrl'];
userAuthId = json['userAuthId'];
userAuthName = json['userAuthName'];
userName = json['userName'];
displayName = json['displayName'];
firstName = json['firstName'];
lastName = json['lastName'];
email = json['email'];
createdAt = JsonConverters.fromJson(json['createdAt'],'DateTime',context!);
lastModified = JsonConverters.fromJson(json['lastModified'],'DateTime',context!);
roles = JsonConverters.fromJson(json['roles'],'List<String>',context!);
permissions = JsonConverters.fromJson(json['permissions'],'List<String>',context!);
isAuthenticated = json['isAuthenticated'];
authProvider = json['authProvider'];
profileUrl = json['profileUrl'];
githubProfileUrl = json['githubProfileUrl'];
twitterProfileUrl = json['twitterProfileUrl'];
accessToken = json['accessToken'];
avatarUrl = json['avatarUrl'];
techStacks = JsonConverters.fromJson(json['techStacks'],'List<TechnologyStack>',context!);
favoriteTechStacks = JsonConverters.fromJson(json['favoriteTechStacks'],'List<TechnologyStack>',context!);
favoriteTechnologies = JsonConverters.fromJson(json['favoriteTechnologies'],'List<Technology>',context!);
userActivity = JsonConverters.fromJson(json['userActivity'],'UserActivity',context!);
members = JsonConverters.fromJson(json['members'],'List<OrganizationMember>',context!);
memberInvites = JsonConverters.fromJson(json['memberInvites'],'List<OrganizationMemberInvite>',context!);
subscriptions = JsonConverters.fromJson(json['subscriptions'],'List<OrganizationSubscription>',context!);
responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => {
'created': JsonConverters.toJson(created,'DateTime',context!),
'id': id,
'referrerUrl': referrerUrl,
'userAuthId': userAuthId,
'userAuthName': userAuthName,
'userName': userName,
'displayName': displayName,
'firstName': firstName,
'lastName': lastName,
'email': email,
'createdAt': JsonConverters.toJson(createdAt,'DateTime',context!),
'lastModified': JsonConverters.toJson(lastModified,'DateTime',context!),
'roles': JsonConverters.toJson(roles,'List<String>',context!),
'permissions': JsonConverters.toJson(permissions,'List<String>',context!),
'isAuthenticated': isAuthenticated,
'authProvider': authProvider,
'profileUrl': profileUrl,
'githubProfileUrl': githubProfileUrl,
'twitterProfileUrl': twitterProfileUrl,
'accessToken': accessToken,
'avatarUrl': avatarUrl,
'techStacks': JsonConverters.toJson(techStacks,'List<TechnologyStack>',context!),
'favoriteTechStacks': JsonConverters.toJson(favoriteTechStacks,'List<TechnologyStack>',context!),
'favoriteTechnologies': JsonConverters.toJson(favoriteTechnologies,'List<Technology>',context!),
'userActivity': JsonConverters.toJson(userActivity,'UserActivity',context!),
'members': JsonConverters.toJson(members,'List<OrganizationMember>',context!),
'memberInvites': JsonConverters.toJson(memberInvites,'List<OrganizationMemberInvite>',context!),
'subscriptions': JsonConverters.toJson(subscriptions,'List<OrganizationSubscription>',context!),
'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
};
getTypeName() => "SessionInfoResponse";
TypeContext? context = _ctx;
}
// @ValidateRequest(Validator="IsAuthenticated")
class SessionInfo implements IGet, IConvertible
{
SessionInfo();
SessionInfo.fromJson(Map<String, dynamic> json) : super();
fromMap(Map<String, dynamic> json) {
return this;
}
Map<String, dynamic> toJson() => {};
getTypeName() => "SessionInfo";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'techstacks.io', types: <String, TypeInfo> {
'TechnologyStackBase': TypeInfo(TypeOf.AbstractClass),
'TechnologyStack': TypeInfo(TypeOf.Class, create:() => TechnologyStack()),
'TechnologyTier': TypeInfo(TypeOf.Enum, enumValues:TechnologyTier.values),
'TechnologyBase': TypeInfo(TypeOf.AbstractClass),
'Technology': TypeInfo(TypeOf.Class, create:() => Technology()),
'UserActivity': TypeInfo(TypeOf.Class, create:() => UserActivity()),
'OrganizationMember': TypeInfo(TypeOf.Class, create:() => OrganizationMember()),
'OrganizationMemberInvite': TypeInfo(TypeOf.Class, create:() => OrganizationMemberInvite()),
'OrganizationSubscription': TypeInfo(TypeOf.Class, create:() => OrganizationSubscription()),
'SessionInfoResponse': TypeInfo(TypeOf.Class, create:() => SessionInfoResponse()),
'List<TechnologyStack>': TypeInfo(TypeOf.Class, create:() => <TechnologyStack>[]),
'List<Technology>': TypeInfo(TypeOf.Class, create:() => <Technology>[]),
'List<OrganizationMember>': TypeInfo(TypeOf.Class, create:() => <OrganizationMember>[]),
'List<OrganizationMemberInvite>': TypeInfo(TypeOf.Class, create:() => <OrganizationMemberInvite>[]),
'List<OrganizationSubscription>': TypeInfo(TypeOf.Class, create:() => <OrganizationSubscription>[]),
'SessionInfo': TypeInfo(TypeOf.Class, create:() => SessionInfo()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /my-session HTTP/1.1
Host: techstacks.io
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<SessionInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel" />
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <SessionInfoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel"> <AccessToken>String</AccessToken> <AuthProvider>String</AuthProvider> <AvatarUrl>String</AvatarUrl> <Created>0001-01-01T00:00:00</Created> <CreatedAt>0001-01-01T00:00:00</CreatedAt> <DisplayName>String</DisplayName> <Email>String</Email> <FavoriteTechStacks xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types"> <d2p1:TechnologyStack> <d2p1:AppUrl>String</d2p1:AppUrl> <d2p1:CommentsPostId>0</d2p1:CommentsPostId> <d2p1:Created>0001-01-01T00:00:00</d2p1:Created> <d2p1:CreatedBy>String</d2p1:CreatedBy> <d2p1:Description>String</d2p1:Description> <d2p1:Details>String</d2p1:Details> <d2p1:DetailsHtml>String</d2p1:DetailsHtml> <d2p1:FavCount>0</d2p1:FavCount> <d2p1:Id>0</d2p1:Id> <d2p1:IsLocked>false</d2p1:IsLocked> <d2p1:LastModified>0001-01-01T00:00:00</d2p1:LastModified> <d2p1:LastModifiedBy>String</d2p1:LastModifiedBy> <d2p1:LastStatusUpdate>0001-01-01T00:00:00</d2p1:LastStatusUpdate> <d2p1:Name>String</d2p1:Name> <d2p1:OrganizationId>0</d2p1:OrganizationId> <d2p1:OwnerId>String</d2p1:OwnerId> <d2p1:ScreenshotUrl>String</d2p1:ScreenshotUrl> <d2p1:Slug>String</d2p1:Slug> <d2p1:VendorName>String</d2p1:VendorName> <d2p1:ViewCount>0</d2p1:ViewCount> </d2p1:TechnologyStack> </FavoriteTechStacks> <FavoriteTechnologies xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types"> <d2p1:Technology> <d2p1:CommentsPostId>0</d2p1:CommentsPostId> <d2p1:Created>0001-01-01T00:00:00</d2p1:Created> <d2p1:CreatedBy>String</d2p1:CreatedBy> <d2p1:Description>String</d2p1:Description> <d2p1:FavCount>0</d2p1:FavCount> <d2p1:Id>0</d2p1:Id> <d2p1:IsLocked>false</d2p1:IsLocked> <d2p1:LastModified>0001-01-01T00:00:00</d2p1:LastModified> <d2p1:LastModifiedBy>String</d2p1:LastModifiedBy> <d2p1:LastStatusUpdate>0001-01-01T00:00:00</d2p1:LastStatusUpdate> <d2p1:LogoApproved>false</d2p1:LogoApproved> <d2p1:LogoUrl>String</d2p1:LogoUrl> <d2p1:Name>String</d2p1:Name> <d2p1:OrganizationId>0</d2p1:OrganizationId> <d2p1:OwnerId>String</d2p1:OwnerId> <d2p1:ProductUrl>String</d2p1:ProductUrl> <d2p1:Slug>String</d2p1:Slug> <d2p1:Tier>ProgrammingLanguage</d2p1:Tier> <d2p1:VendorName>String</d2p1:VendorName> <d2p1:VendorUrl>String</d2p1:VendorUrl> <d2p1:ViewCount>0</d2p1:ViewCount> </d2p1:Technology> </FavoriteTechnologies> <FirstName>String</FirstName> <GithubProfileUrl>String</GithubProfileUrl> <Id>String</Id> <IsAuthenticated>false</IsAuthenticated> <LastModified>0001-01-01T00:00:00</LastModified> <LastName>String</LastName> <MemberInvites xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types"> <d2p1:OrganizationMemberInvite> <d2p1:Dismissed>0001-01-01T00:00:00</d2p1:Dismissed> <d2p1:Id>0</d2p1:Id> <d2p1:OrganizationId>0</d2p1:OrganizationId> <d2p1:UserId>0</d2p1:UserId> <d2p1:UserName>String</d2p1:UserName> </d2p1:OrganizationMemberInvite> </MemberInvites> <Members xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types"> <d2p1:OrganizationMember> <d2p1:DenyAll>false</d2p1:DenyAll> <d2p1:DenyComments>false</d2p1:DenyComments> <d2p1:DenyPosts>false</d2p1:DenyPosts> <d2p1:Id>0</d2p1:Id> <d2p1:IsModerator>false</d2p1:IsModerator> <d2p1:IsOwner>false</d2p1:IsOwner> <d2p1:Notes>String</d2p1:Notes> <d2p1:OrganizationId>0</d2p1:OrganizationId> <d2p1:UserId>0</d2p1:UserId> <d2p1:UserName>String</d2p1:UserName> </d2p1:OrganizationMember> </Members> <Permissions xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>String</d2p1:string> </Permissions> <ProfileUrl>String</ProfileUrl> <ReferrerUrl>String</ReferrerUrl> <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types"> <d2p1:ErrorCode>String</d2p1:ErrorCode> <d2p1:Message>String</d2p1:Message> <d2p1:StackTrace>String</d2p1:StackTrace> <d2p1:Errors> <d2p1:ResponseError> <d2p1:ErrorCode>String</d2p1:ErrorCode> <d2p1:FieldName>String</d2p1:FieldName> <d2p1:Message>String</d2p1:Message> <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </d2p1:Meta> </d2p1:ResponseError> </d2p1:Errors> <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>String</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </d2p1:Meta> </ResponseStatus> <Roles xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>String</d2p1:string> </Roles> <Subscriptions xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types"> <d2p1:OrganizationSubscription> <d2p1:Created>0001-01-01T00:00:00</d2p1:Created> <d2p1:FrequencyDays>0</d2p1:FrequencyDays> <d2p1:Id>0</d2p1:Id> <d2p1:LastSynced>0001-01-01T00:00:00</d2p1:LastSynced> <d2p1:LastSyncedId>0</d2p1:LastSyncedId> <d2p1:OrganizationId>0</d2p1:OrganizationId> <d2p1:PostTypes xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:string>String</d4p1:string> </d2p1:PostTypes> <d2p1:UserId>0</d2p1:UserId> <d2p1:UserName>String</d2p1:UserName> </d2p1:OrganizationSubscription> </Subscriptions> <TechStacks xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types"> <d2p1:TechnologyStack> <d2p1:AppUrl>String</d2p1:AppUrl> <d2p1:CommentsPostId>0</d2p1:CommentsPostId> <d2p1:Created>0001-01-01T00:00:00</d2p1:Created> <d2p1:CreatedBy>String</d2p1:CreatedBy> <d2p1:Description>String</d2p1:Description> <d2p1:Details>String</d2p1:Details> <d2p1:DetailsHtml>String</d2p1:DetailsHtml> <d2p1:FavCount>0</d2p1:FavCount> <d2p1:Id>0</d2p1:Id> <d2p1:IsLocked>false</d2p1:IsLocked> <d2p1:LastModified>0001-01-01T00:00:00</d2p1:LastModified> <d2p1:LastModifiedBy>String</d2p1:LastModifiedBy> <d2p1:LastStatusUpdate>0001-01-01T00:00:00</d2p1:LastStatusUpdate> <d2p1:Name>String</d2p1:Name> <d2p1:OrganizationId>0</d2p1:OrganizationId> <d2p1:OwnerId>String</d2p1:OwnerId> <d2p1:ScreenshotUrl>String</d2p1:ScreenshotUrl> <d2p1:Slug>String</d2p1:Slug> <d2p1:VendorName>String</d2p1:VendorName> <d2p1:ViewCount>0</d2p1:ViewCount> </d2p1:TechnologyStack> </TechStacks> <TwitterProfileUrl>String</TwitterProfileUrl> <UserActivity xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types"> <d2p1:CommentDownVotes>0</d2p1:CommentDownVotes> <d2p1:CommentUpVotes>0</d2p1:CommentUpVotes> <d2p1:Created>0001-01-01T00:00:00</d2p1:Created> <d2p1:Id>0</d2p1:Id> <d2p1:Karma>0</d2p1:Karma> <d2p1:Modified>0001-01-01T00:00:00</d2p1:Modified> <d2p1:PinnedCommentCount>0</d2p1:PinnedCommentCount> <d2p1:PostCommentReportCount>0</d2p1:PostCommentReportCount> <d2p1:PostCommentsCount>0</d2p1:PostCommentsCount> <d2p1:PostDownVotes>0</d2p1:PostDownVotes> <d2p1:PostReportCount>0</d2p1:PostReportCount> <d2p1:PostUpVotes>0</d2p1:PostUpVotes> <d2p1:PostsCount>0</d2p1:PostsCount> <d2p1:TechStacksCount>0</d2p1:TechStacksCount> <d2p1:TechnologyCount>0</d2p1:TechnologyCount> <d2p1:UserName>String</d2p1:UserName> </UserActivity> <UserAuthId>String</UserAuthId> <UserAuthName>String</UserAuthName> <UserName>String</UserName> </SessionInfoResponse>