UiExtension.cs
1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using Contentful.Core.Configuration;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace Contentful.Core.Models.Management
{
/// <summary>
/// Encapsulates information about a Contentful Ui Extension
/// </summary>
[JsonConverter(typeof(ExtensionJsonConverter))]
public class UiExtension : IContentfulResource
{
/// <summary>
/// Common system managed metadata properties.
/// </summary>
[JsonProperty("sys")]
public SystemProperties SystemProperties { get; set; }
/// <summary>
/// The source URL for html file for the extension.
/// </summary>
public string Src { get; set; }
/// <summary>
/// String representation of the widget, e.g. inline HTML.
/// </summary>
public string SrcDoc { get; set; }
/// <summary>
/// The name of the extension
/// </summary>
public string Name { get; set; }
/// <summary>
/// The field types for which this extension applies.
/// </summary>
public List<string> FieldTypes { get; set; }
/// <summary>
/// Whether or not this is an extension for the Contentful sidebar.
/// </summary>
public bool Sidebar { get; set; }
}
}