WAX Unity Web3 Suite
AtomicMarket
AtomicMarket
  • Getting Started
  • Installation
    • WebGL Installation
  • Examples
    • Unity examples
    • Available assets for trading
    • Filtered assets lists available for trading
    • AssetExample
    • AuctionExample
    • BuyOfferExample
    • SalesExample
  • API Docs
    • AtomicMarketApiFactory
    • Assets
      • AssetsApi
        • AssetDto
          • DataDto
            • BackedTokensDto
            • CollectionDto
            • SchemaDto
              • FormatDto
            • TemplateDto
            • ImmutableDataDto
        • AssetsDto
          • DataDto
            • BackedTokensDto
            • CollectionDto
            • SchemaDto
              • FormatDto
            • TemplateDto
              • ImmutableDataDto
      • AssetsUriParameterBuilder
    • Auctions
      • AuctionsApi
        • AuctionDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
              • BidsDto
              • CollectionDto
              • PriceDto
      • AuctionsDto
        • DataDto
          • AssetDto
            • BackedTokensDto
            • SchemaDto
              • FormatDto
            • TemplateDto
              • ImmutableDataDto
          • BidsDto
          • CollectionDto
          • PriceDto
      • AuctionsUriParameterBuilder
    • BuyOffers
      • BuyOffersApi
        • BuyOfferDto
          • DataDto
        • AssetDto
          • BackedTokensDto
          • SchemaDto
            • FormatDto
          • TemplateDto
            • ImmutableDataDto
        • CollectionDto
        • PriceDto
        • BuyOffersDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
            • CollectionDto
            • PriceDto
      • BuyOffersUriParameterBuilder
    • Config
      • ConfigApi
        • ConfigDto
          • DataDto
            • SupportedPairsDto
              • PairsDataDto
            • SupportedTokensDto
    • MarketPlaces
      • MarketPlacesApi
        • MarketplaceDto
          • DataDto
        • MarketplacesDto
          • DataDto
    • Offers
      • OffersApi
        • OfferDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • CollectionDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
        • OffersDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • CollectionDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
      • OffersUriParameterBuilder
    • Pricing
      • PricingApi
        • PricesDto
          • DataDto
        • AssetPricingDto
          • DataDto
        • TemplatesDto
          • DataDto
      • PricingUriParametersBuilder
    • Sales
      • SalesApi
        • SaleDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
            • CollectionDto
            • PriceDto
        • SalesDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
              • CollectionDto
              • PriceDto
      • SalesUriParameterBuilder
    • Stats
      • StatsApi
        • StatsDto
          • DataDto
        • AccountDto
          • DataDto
            • ResultDto
            • SymbolDto
        • AccountsDto
          • DataDto
            • ResultDto
            • SymbolDto
        • CollectionDto
          • DataDto
            • ResultDto
            • SymbolDto
        • CollectionsDto
          • DataDto
            • ResultDto
            • SymbolDto
        • GraphDto
          • DataDto
            • ResultDto
            • SymbolDto
        • SalesDto
          • DataDto
            • ResultDto
            • SymbolDto
        • SchemaDto
          • DataDto
            • ResultDto
            • SymbolDto
      • StatsUriParameterBuilder
    • Transfers
      • TransfersApi
        • TransfersDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • CollectionDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
      • TransfersUriParameterBuilder
    • Core
      • HttpRequestBuilder
      • HttpResponseMessageExtension
      • IUriParameterBuilder
    • LogsDto
      • DataDto
Powered by GitBook
On this page
  • Summary
  • Members
Edit on GitHub
  1. API Docs
  2. Assets

AssetsUriParameterBuilder

Summary

Members
Descriptions

WithOwner sets the owner parameter

WithCollectionName is a function that takes a string as a parameter and returns an AssetsUriParameterBuilder object

This function sets the schema name for the query.

WithTemplateId sets the _templateId variable to the value of the templateId parameter

WithMatch sets the match parameter

WithCollectionBlacklist is a function that takes an array of strings and returns an AssetsUriParameterBuilder object

WithCollectionWhitelist is a function that takes an array of strings and returns an AssetsUriParameterBuilder object

WithOnlyDuplicatedTemplate sets the _onlyDuplicatedTemplate field to the value of the 'onlyDuplicateTemplate' parameter

WithAuthorisedAccount sets the authorisedAccount parameter

WithHideOffers sets the _hideOffers field to the value of the hideOffers parameter

This function takes an array of strings and joins them together with a comma.

WithLowerBound sets the lower bound of the account_ids parameter

WithUpperBound sets the upper bound of the range of accounts to be returned

WithBefore sets the _before variable to the value of the before parameter

WithAfter sets the _after variable to the value of the after parameter

WithPage sets the _page variable to the value of the page parameter

WithLimit sets the _limit variable to the value of the limit parameter

This function sets the sort strategy for the query.

It sets the sort parameter to the value passed in.

It builds a query string based on the parameters that have been set.

A private variable that is used to store the value of the owner parameter.

A private variable that is used to store the value of the collectionName parameter.

A private variable that is used to store the value of the schemaName parameter.

A nullable integer specfying the templateId.

A private variable that is used to store the value of the match parameter.

A private variable that is used to store the value of the CollectionBlacklist parameter.

A private variable that is used to store the value of the collectionWhitelist parameter.

A nullable boolean specfying if onlyDuplicatedTemplates should be shown.

A private variable that is used to store the value of the authorisedAccount parameter.

A nullable boolean specfying if offers should be hidden.

A private variable that is used to store the value of the ids parameter.

A private variable that is used to store the value of the lowerBound parameter.

A private variable that is used to store the value of the upperBound parameter.

A nullable integer specifying the previous timestamp.

A nullable integer specifying the after timestamp.

A nullable integer specifying the page.

A nullable integer specifying the limit of returned values.

A nullable enum specifying the sortStrategy.

Declaring a private variable called _sort.

Members

WithOwner sets the owner parameter

Parameters

  • owner The owner parameter is used to filter the results. The owner parameter is a string that is matched against the account name.

Returns

The AssetsUriParameterBuilder object.

WithCollectionName is a function that takes a string as a parameter and returns an AssetsUriParameterBuilder object

Parameters

  • collectionName The name of the collection you want to query.

Returns

The AssetsUriParameterBuilder object.

This function sets the schema name for the query.

Parameters

  • schemaName The name of the schema to use.

Returns

The AssetsUriParameterBuilder object.

WithTemplateId sets the _templateId variable to the value of the templateId parameter

Parameters

  • templateId The templateId of the results to return.

Returns

The AssetsUriParameterBuilder object.

WithMatch sets the match parameter

Parameters

  • match The match parameter is used to filter the results. The match parameter is a string that is matched against the account name.

Returns

The AssetsUriParameterBuilder object.

WithCollectionBlacklist is a function that takes an array of strings and returns an AssetsUriParameterBuilder object

Parameters

  • collectionBlacklist A list of collections to exclude from the results.

Returns

The AssetsUriParameterBuilder object.

WithCollectionWhitelist is a function that takes an array of strings and returns an AssetsUriParameterBuilder object

Parameters

  • collectionWhitelist A list of collections to include in the response.

Returns

The AssetsUriParameterBuilder object.

WithOnlyDuplicatedTemplate sets the _onlyDuplicatedTemplate field to the value of the 'onlyDuplicateTemplate' parameter

Parameters

  • onlyDuplicateTemplate Show only duplicated assets grouped by template

Returns

The AssetsUriParameterBuilder object.

WithAuthorisedAccount sets the authorisedAccount parameter

Parameters

  • authorisedAccount The authorisedAccount parameter is used to filter assets the provided account can edit.

Returns

The AssetsUriParameterBuilder object.

WithHideOffers sets the _hideOffers field to the value of the hideOffers parameter

Parameters

  • hideOffers If true, the response will not include any offers.

Returns

The AccountsUriParameterBuilder object.

This function takes an array of strings and joins them together with a comma.

Parameters

  • ids A comma-separated list of account IDs.

Returns

The AccountsUriParameterBuilder object.

WithLowerBound sets the lower bound of the account_ids parameter

Parameters

  • lowerBound The lower bound of the accounts to retrieve.

Returns

The AssetsUriParameterBuilder object.

WithUpperBound sets the upper bound of the range of accounts to be returned

Parameters

  • upperBound The upper bound of the range to query.

Returns

The AssetsUriParameterBuilder object.

WithBefore sets the _before variable to the value of the before parameter

Parameters

  • before The previous values of the results to return.

Returns

The AssetsUriParameterBuilder object.

WithAfter sets the _after variable to the value of the after parameter

Parameters

  • after The later values of the results to return.

Returns

The AssetsUriParameterBuilder object.

WithPage sets the _page variable to the value of the page parameter

Parameters

  • page The page number of the results to return.

Returns

The AssetsUriParameterBuilder object.

WithLimit sets the _limit variable to the value of the limit parameter

Parameters

  • limit The number of results to return.

Returns

The AssetsUriParameterBuilder object.

This function sets the sort strategy for the query.

Parameters

  • SortStrategy

Returns

The builder object itself.

It sets the sort parameter to the value passed in.

Parameters

  • sort The sort order of the results.

Returns

A new instance of the AssetsUriParameterBuilder class.

It builds a query string based on the parameters that have been set.

Returns

A string that contains the parameters for the query.

A private variable that is used to store the value of the owner parameter.

A private variable that is used to store the value of the collectionName parameter.

A private variable that is used to store the value of the schemaName parameter.

A nullable integer specfying the templateId.

A private variable that is used to store the value of the match parameter.

A private variable that is used to store the value of the CollectionBlacklist parameter.

A private variable that is used to store the value of the collectionWhitelist parameter.

A nullable boolean specfying if onlyDuplicatedTemplates should be shown.

A private variable that is used to store the value of the authorisedAccount parameter.

A nullable boolean specfying if offers should be hidden.

A private variable that is used to store the value of the ids parameter.

A private variable that is used to store the value of the lowerBound parameter.

A private variable that is used to store the value of the upperBound parameter.

A nullable integer specifying the previous timestamp.

A nullable integer specifying the after timestamp.

A nullable integer specifying the page.

A nullable integer specifying the limit of returned values.

A nullable enum specifying the sortStrategy.

Declaring a private variable called _sort.

PreviousImmutableDataDtoNextAuctions

Last updated 2 years ago

public (string owner)

public (string collectionName)

public (string schemaName)

public (int templateId)

public (string match)

public (string[] collectionBlacklist)

public (string[] collectionWhitelist)

public (bool onlyDuplicateTemplates)

public (string authorisedAccount)

public (bool hideOffers)

public (string[] ids)

public (string lowerBound)

public (string upperBound)

public (int before)

public (int after)

public (int page)

public (int limit)

public ( sorting)

public (string sort)

public string ()

private string

private string

private string

private int?

private string

private string

private string

private bool?

private string

private bool?

private string

private string

private string

private int?

private int?

private int?

private int?

private ?

private string

public (string owner)

public (string collectionName)

public (string schemaName)

public (int templateId)

public (string match)

public (string[] collectionBlacklist)

public (string[] collectionWhitelist)

public (bool onlyDuplicateTemplates)

public (string authorisedAccount)

public (bool hideOffers)

public (string[] ids)

public (string lowerBound)

public (string upperBound)

public (int before)

public (int after)

public (int page)

public (int limit)

public ( sorting)

public (string sort)

public string ()

private string

private string

private string

private int?

private string

private string

private string

private bool?

private string

private bool?

private string

private string

private string

private int?

private int?

private int?

private int?

private ?

private string

AssetsUriParameterBuilder
WithOwner
AssetsUriParameterBuilder
WithCollectionName
AssetsUriParameterBuilder
WithSchemaName
AssetsUriParameterBuilder
WithTemplateId
AssetsUriParameterBuilder
WithMatch
AssetsUriParameterBuilder
WithCollectionBlacklist
AssetsUriParameterBuilder
WithCollectionWhitelist
AssetsUriParameterBuilder
WithOnlyDuplicateTemplate
AssetsUriParameterBuilder
WithAuthorisedAccount
AssetsUriParameterBuilder
WithHideOffers
AssetsUriParameterBuilder
WithIds
AssetsUriParameterBuilder
WithLowerBound
AssetsUriParameterBuilder
WithUpperBound
AssetsUriParameterBuilder
WithBefore
AssetsUriParameterBuilder
WithAfter
AssetsUriParameterBuilder
WithPage
AssetsUriParameterBuilder
WithLimit
SortStrategy
AssetsUriParameterBuilder
WithOrder
AssetsUriParameterBuilder
WithSort
Build
_owner
_collectionName
_schemaName
_templateId
_match
_collectionBlacklist
_collectionWhitelist
_onlyDuplicateTemplates
_authorisedAccount
_hideOffers
_ids
_lowerBound
_upperBound
_before
_after
_page
_limit
SortStrategy
_sortStrategy
_sort
AssetsUriParameterBuilder
WithOwner
AssetsUriParameterBuilder
WithCollectionName
AssetsUriParameterBuilder
WithSchemaName
AssetsUriParameterBuilder
WithTemplateId
AssetsUriParameterBuilder
WithMatch
AssetsUriParameterBuilder
WithCollectionBlacklist
AssetsUriParameterBuilder
WithCollectionWhitelist
AssetsUriParameterBuilder
WithOnlyDuplicateTemplate
AssetsUriParameterBuilder
WithAuthorisedAccount
AssetsUriParameterBuilder
WithHideOffers
AssetsUriParameterBuilder
WithIds
AssetsUriParameterBuilder
WithLowerBound
AssetsUriParameterBuilder
WithUpperBound
AssetsUriParameterBuilder
WithBefore
AssetsUriParameterBuilder
WithAfter
AssetsUriParameterBuilder
WithPage
AssetsUriParameterBuilder
WithLimit
SortStrategy
AssetsUriParameterBuilder
WithOrder
AssetsUriParameterBuilder
WithSort
Build
_owner
_collectionName
_schemaName
_templateId
_match
_collectionBlacklist
_collectionWhitelist
_onlyDuplicateTemplates
_authorisedAccount
_hideOffers
_ids
_lowerBound
_upperBound
_before
_after
_page
_limit
SortStrategy
_sortStrategy
_sort