2018-07-19 01:56:17 +00:00
|
|
|
|
using BotSharp.Core.Agents;
|
|
|
|
|
|
using System;
|
2018-07-15 12:31:52 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Engines
|
|
|
|
|
|
{
|
|
|
|
|
|
public class AgentImportHeader
|
|
|
|
|
|
{
|
|
|
|
|
|
public String Id { get; set; }
|
|
|
|
|
|
public String Name { get; set; }
|
2018-09-04 20:39:51 +00:00
|
|
|
|
public PlatformType Platform { get; set; }
|
2018-07-15 12:31:52 +00:00
|
|
|
|
public String ClientAccessToken { get; set; }
|
|
|
|
|
|
public String DeveloperAccessToken { get; set; }
|
2018-07-19 01:56:17 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Integration with other social media platform
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public List<AgentIntegration> Integrations { get; set; }
|
2018-07-15 12:31:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|