GoogleCloudAiplatformV1SharePointSourcesSharePointSource.fromJson constructor

GoogleCloudAiplatformV1SharePointSourcesSharePointSource.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1SharePointSourcesSharePointSource.fromJson(
    core.Map json_)
    : this(
        clientId: json_['clientId'] as core.String?,
        clientSecret: json_.containsKey('clientSecret')
            ? GoogleCloudAiplatformV1ApiAuthApiKeyConfig.fromJson(
                json_['clientSecret'] as core.Map<core.String, core.dynamic>)
            : null,
        driveId: json_['driveId'] as core.String?,
        driveName: json_['driveName'] as core.String?,
        fileId: json_['fileId'] as core.String?,
        sharepointFolderId: json_['sharepointFolderId'] as core.String?,
        sharepointFolderPath: json_['sharepointFolderPath'] as core.String?,
        sharepointSiteName: json_['sharepointSiteName'] as core.String?,
        tenantId: json_['tenantId'] as core.String?,
      );