From 4e68030affceba983fa83f12b62ad8cec4033425 Mon Sep 17 00:00:00 2001 From: devKlausS Date: Wed, 16 Feb 2022 15:29:53 +0100 Subject: [PATCH] update branding according to zendesk API doc https://developer.zendesk.com/api-reference/ticketing/account-configuration/account_settings/#branding --- src/ZendeskApi_v2/Models/AccountsAndActivities/Branding.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ZendeskApi_v2/Models/AccountsAndActivities/Branding.cs b/src/ZendeskApi_v2/Models/AccountsAndActivities/Branding.cs index 9fa790aa..07444731 100644 --- a/src/ZendeskApi_v2/Models/AccountsAndActivities/Branding.cs +++ b/src/ZendeskApi_v2/Models/AccountsAndActivities/Branding.cs @@ -23,5 +23,11 @@ public class Branding [JsonProperty("text_color")] public string TextColor { get; set; } + + [JsonProperty("header_logo_url")] + public string HeaderLogoUrl { get; set; } + + [JsonProperty("favicon_url")] + public string FaviconUrl { get; set; } } }