Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexread730 committed Jun 10, 2021
1 parent c6caa73 commit 1be86a2
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 6 deletions.
26 changes: 26 additions & 0 deletions .vs/Intrinio.SDK/xs/UserPrefs.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<Properties>
<MonoDevelop.Ide.Workbench ActiveDocument="src/Intrinio.SDK/Model/ApiResponseCompanyRecognize.cs">
<Files>
<File FileName="src/Intrinio.SDK/Model/ApiResponseCompanyRecognize.cs" Line="38" Column="21" />
</Files>
<Pads>
<Pad Id="ProjectPad">
<State name="__root__">
<Node name="Intrinio.SDK" expanded="True">
<Node name="Intrinio.SDK" expanded="True">
<Node name="Model" expanded="True">
<Node name="ApiResponseCompanyRecognize.cs" selected="True" />
</Node>
</Node>
</Node>
</State>
</Pad>
</Pads>
</MonoDevelop.Ide.Workbench>
<MonoDevelop.Ide.DebuggingService.PinnedWatches />
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" />
<MonoDevelop.Ide.DebuggingService.Breakpoints>
<BreakpointStore />
</MonoDevelop.Ide.DebuggingService.Breakpoints>
<MultiItemStartupConfigurations />
</Properties>
1 change: 1 addition & 0 deletions .vs/Intrinio.SDK/xs/project-cache/Intrinio.SDK-Debug.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Empty file.
Binary file added .vs/Intrinio.SDK/xs/sqlite3/storage.ide
Binary file not shown.
Binary file added .vs/Intrinio.SDK/xs/sqlite3/storage.ide-shm
Binary file not shown.
Binary file added .vs/Intrinio.SDK/xs/sqlite3/storage.ide-wal
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/ApiResponseCompanyRecognize.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

Name | Type | Description
------------ | ------------- | -------------
**Companies** | [**List&lt;DefinitionsCompanySummary&gt;**](DefinitionsCompanySummary.md) | &nbsp;
**Companies** | [**List&lt;CompanySummary&gt;**](CompanySummary.md) | &nbsp;

[//]: # (END_DEFINITION)


[//]: # (CONTAINED_CLASS:Intrinio.SDK.Model.DefinitionsCompanySummary)
[//]: # (CONTAINED_CLASS:Intrinio.SDK.Model.CompanySummary)


4 changes: 2 additions & 2 deletions docs/CompanyApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1422,7 +1422,7 @@ namespace Example

var companyApi = new CompanyApi();

string text = text_example;
string text = "Apple";

ApiResponseCompanyRecognize result = companyApi.RecognizeCompany(text);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
Expand All @@ -1440,7 +1440,7 @@ namespace Example

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**text** | string| The text sent to the Thea API to analyze | [default to Apple] &nbsp;
**text** | string| The text sent to the Thea API to analyze | &nbsp;
<br/>

[//]: # (END_PARAMETERS)
Expand Down
4 changes: 2 additions & 2 deletions src/Intrinio.SDK/Model/ApiResponseCompanyRecognize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public partial class ApiResponseCompanyRecognize : IEquatable<ApiResponseCompan
/// Initializes a new instance of the <see cref="ApiResponseCompanyRecognize" /> class.
/// </summary>
/// <param name="Companies">Companies.</param>
public ApiResponseCompanyRecognize(List<DefinitionsCompanySummary> Companies = default(List<DefinitionsCompanySummary>))
public ApiResponseCompanyRecognize(List<CompanySummary> Companies = default(List<CompanySummary>))
{
this.Companies = Companies;
}
Expand All @@ -35,7 +35,7 @@ public partial class ApiResponseCompanyRecognize : IEquatable<ApiResponseCompan
/// Gets or Sets Companies
/// </summary>
[DataMember(Name="companies", EmitDefaultValue=false)]
public List<DefinitionsCompanySummary> Companies { get; set; }
public List<CompanySummary> Companies { get; set; }

/// <summary>
/// Returns the string presentation of the object
Expand Down

0 comments on commit 1be86a2

Please sign in to comment.