-
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
138 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Converters; | ||
using ZendeskApi_v2.Models.Organizations; | ||
|
||
namespace ZendeskApi_v2.Models.Users | ||
{ | ||
public class GroupUserExportResponse | ||
{ | ||
[JsonProperty("count")] | ||
public long Count { get; set; } | ||
|
||
[JsonProperty("end_time")] | ||
[JsonConverter(typeof(UnixDateTimeConverter))] | ||
public DateTimeOffset EndTime { get; set; } | ||
|
||
[JsonProperty("next_page")] | ||
public string NextPage { get; set; } | ||
|
||
[JsonProperty("organizations")] | ||
public IList<Organization> Organizations { get; set; } | ||
|
||
[JsonProperty("identities")] | ||
public IList<UserIdentity> Identities { get; set; } | ||
|
||
[JsonProperty("groups")] | ||
public IList<Groups.Group> Groups { get; set; } | ||
|
||
[JsonProperty("users")] | ||
public IList<User> Users { get; set; } | ||
} | ||
} |
This file contains 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
This file contains 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