generated from CareBoo/UPMTemplate-2020
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(indexer): ✨ implement
ApplicationQuery
- Loading branch information
1 parent
e342cdc
commit de02370
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...com.careboo.unity-algorand-sdk/CareBoo.AlgoSdk/AlgoApi/Indexer/Models/ApplicationQuery.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
|
||
namespace AlgoSdk | ||
{ | ||
[AlgoApiObject] | ||
public struct ApplicationQuery | ||
: IEquatable<ApplicationQuery> | ||
{ | ||
[AlgoApiField("include-all", null)] | ||
public Optional<bool> IncludeAll; | ||
|
||
public bool Equals(ApplicationQuery other) | ||
{ | ||
return IncludeAll.Equals(other.IncludeAll); | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...areboo.unity-algorand-sdk/CareBoo.AlgoSdk/AlgoApi/Indexer/Models/ApplicationQuery.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.