-
-
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.
Added redact API functionality (#517)
* Added redact API functionality * added test for redacting functionality * added new test to check file has been redacted
- Loading branch information
1 parent
2b2291c
commit c3a39b1
Showing
3 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/ZendeskApi_v2/Models/Requests/IndividualAttachmentResponse.cs
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,14 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using Newtonsoft.Json; | ||
using ZendeskApi_v2.Models.Shared; | ||
|
||
namespace ZendeskApi_v2.Models.Requests | ||
{ | ||
public class IndividualAttachmentResponse | ||
{ | ||
[JsonProperty("attachment")] | ||
public Attachment Attachment { 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