Skip to main content

Class CopilotDataSourceEntity

Namespace: SuperOffice.WebApi.Data
Assembly: SuperOffice.WebApi.dll
Carrier object for CopilotDataSourceEntity. Copilot data source - contains a list of settings for this source

Inheritance

objectCarrierCopilotDataSourceEntity

Inherited Members

Carrier.TableRight, Carrier.FieldProperties, object.ToString(), object.Equals(object), object.Equals(object, object), object.ReferenceEquals(object, object), object.GetHashCode(), object.GetType(), object.MemberwiseClone()

Examples

Get CopilotDataSourceEntity 123 using the WebApi client:
var configuration = new WebApiConfiguration(url);
var agent = new AIAgent(configuration);
var copilotDataSourceEntity = agent.GetCopilotDataSourceEntity( 123 );

Constructors

CopilotDataSourceEntity()

Default constructor - defaults any enum props to 0.

Properties

CopilotDataSourceId

Primary key

Property Value

int

CopilotDataSourceType

Type of copilot data source NULL if unknown enum value.

Property Value

CopilotDataSourceType?

See Also

CopilotDataSourceEntity.CopilotDataSourceType_String

CopilotDataSourceType_String

Type of copilot data source Raw string enum value.

Property Value

string

See Also

CopilotDataSourceEntity.CopilotDataSourceType

CopilotId

The associated copilot

Property Value

int

Description

Description of data source

Property Value

string

Name

Name of data source

Property Value

string

Settings

Collection of data source settings - each setting has key + value

Property Value

CopilotDataSourceSetting[]

See Also

AIAgent