Connection constructor
Connection({
- String? connectionId,
- String? userId,
- required String engineId,
- required String companyId,
- String? credentialType,
- String? apiProvider,
- String? apiEndpoint,
- String? apiKeyLocation,
- String? apiKeyParam,
- String? apiKeyValue,
- required String visibility,
- String? name,
- String? description,
- String? gcpSecretId,
- String? providerDomain,
- String? verifiedUsageAbility,
- String? dateCreated,
- String? lastUpdated,
- String? active,
Returns a new Connection instance.
Implementation
Connection({
this.connectionId,
this.userId,
required this.engineId,
required this.companyId,
this.credentialType,
this.apiProvider,
this.apiEndpoint,
this.apiKeyLocation,
this.apiKeyParam,
this.apiKeyValue,
required this.visibility,
this.name,
this.description,
this.gcpSecretId,
this.providerDomain,
this.verifiedUsageAbility,
this.dateCreated,
this.lastUpdated,
this.active,
});