Created
April 9, 2022 07:52
-
-
Save MahdiKarimipour/efb0f48cc60ea65b7928e33862b62dec to your computer and use it in GitHub Desktop.
Response Payload to Create Azure DevOps Security Group
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AzureDevOpsCreateGroupResponseDto | |
{ | |
public string subjectKind { get; set; } | |
public string description { get; set; } | |
public string domain { get; set; } | |
public string principalName { get; set; } | |
public object mailAddress { get; set; } | |
public string origin { get; set; } | |
public string originId { get; set; } | |
public string displayName { get; set; } | |
public _Links _links { get; set; } | |
public string url { get; set; } | |
public string descriptor { get; set; } | |
public class _Links | |
{ | |
public Self self { get; set; } | |
public Memberships memberships { get; set; } | |
public Membershipstate membershipState { get; set; } | |
public Storagekey storageKey { get; set; } | |
} | |
public class Self | |
{ | |
public string href { get; set; } | |
} | |
public class Memberships | |
{ | |
public string href { get; set; } | |
} | |
public class Membershipstate | |
{ | |
public string href { get; set; } | |
} | |
public class Storagekey | |
{ | |
public string href { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment