Skip to content

Commit

Permalink
feat(indexer): ✨ implement ApplicationQuery
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonboukheir committed Oct 3, 2021
1 parent e342cdc commit de02370
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
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);
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit de02370

Please sign in to comment.