WAX Unity Web3 Suite
AtomicAssets
AtomicAssets
  • Getting Started
  • Installation
    • WebGL Installation
  • Examples
    • Unity Example
    • Filtered assets avilable for trading
    • AccountExample
    • BurnsExample
    • CollectionsExample
    • OffersExample
    • SchemasExample
    • TemplatesExample
    • TransfersExample
  • API Docs
    • AtomicAssetsApiFactory
    • Accounts
      • AccountsApi
        • AccountCollectionDto
          • DataDto
            • SchemasDto
            • TemplatesDto
        • AccountDto
          • DataDto
            • CollectionsDto
            • TemplatesDto
        • AccountsDto
          • DataDto
      • AccountsUriParameterBuilder
    • Assets
      • AssetsApi
        • AssetDto
          • DataDto
            • BackedTokensDto
            • CollectionDto
            • FormatDto
            • SchemaDto
            • ImmutableDataDto
            • TemplateDto
        • AssetsDto
          • DataDto
            • BackedTokensDto
            • CollectionDto
            • SchemaDto
              • FormatDto
            • TemplateDto
              • ImmutableDataDto
      • AssetsUriParameterBuilder
    • Burns
      • BurnsApi
        • BurnDto
          • DataDto
            • CollectionsDto
            • TemplatesDto
        • BurnsDto
          • DataDto
      • BurnsUriParameterBuilder
    • Collections
      • CollectionsApi
        • CollectionDto
          • DataDto
        • CollectionsDto
          • DataDto
      • CollectionsUriParameterBuilder
    • Config
      • ConfigApi
        • ConfigDto
    • Offers
      • OffersApi
        • OfferDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • CollectionDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
        • OffersDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • CollectionDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
      • OffersUriParameterBuilder
    • Schemas
      • SchemasApi
        • SchemaDto
          • DataDto
            • CollectionDto
            • FormatDto
        • SchemasDto
          • DataDto
            • CollectionDto
            • FormatDto
      • SchemasUriParameterBuilder
    • Templates
      • TemplatesApi
        • TemplateDto
          • DataDto
            • CollectionDto
            • SchemaDto
              • FormatDto
        • TemplatesDto
          • DataDto
            • CollectionDto
            • SchemaDto
              • FormatDto
      • TemplatesUriParameterBuilder
    • Transfers
      • TransfersApi
        • TransfersDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • CollectionDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
      • TransfersUriParameterBuilder
    • StatsDto
      • DataDto
    • LogsDto
      • DataDto
    • Core
      • HttpRequestBuilder
      • HttpResponseMessageExtension
Powered by GitBook
On this page
  • Summary
  • Members
Edit on GitHub
  1. API Docs
  2. Schemas

SchemasApi

Summary

Members
Descriptions

This function will return a SchemasDto object that contains a list of all the schemas that are available in the API.

This function will return a list of schemas that match the criteria specified in the SchemasUriParameterBuilder object.

This function will return a schema object for the specified collection and schema name.

It returns the stats of a schema.

This function returns a list of logs for a specific schema.

This function returns a list of logs for a specific schema.

It returns a URI that points to the schemas endpoint.

It takes a SchemasUriParameterBuilder object as a parameter, and returns a Uri object.

It returns a URI for a specific schema in a specific collection

It returns a URI that points to the stats for a specific schema in a specific collection.

This function returns a URI for the schema logs endpoint

It returns a URI for the schema logs endpoint.

Members

public SchemasDto Schemas()

This function will return a SchemasDto object that contains a list of all the schemas that are available in the API.

Returns

A SchemasDto object.

public SchemasDto Schemas( SchemasUriParameterBuilder schemasUriParameterBuilder)

This function will return a list of schemas that match the criteria specified in the SchemasUriParameterBuilder object.

Parameters

  • SchemasUriParameterBuilder This is a class that contains all the parameters that can be passed to the API.

Returns

A list of schemas.

public SchemaDto Schema(string collectionName, string schemaName)

This function will return a schema object for the specified collection and schema name.

Parameters

  • collectionName The name of the collection you want to get the schema for.

  • schemaName The name of the schema you want to retrieve.

Returns

A SchemaDto object.

public StatsDto SchemaStats(string collectionName, string schemaName)

It returns the stats of a schema.

Parameters

  • collectionName The name of the collection you want to get the stats for.

  • schemaName The name of the schema you want to get stats for.

Returns

A StatsDto object

public LogsDto SchemaLogs(string collectionName, string schemaName)

This function returns a list of logs for a specific schema.

Parameters

  • collectionName The name of the collection you want to get the logs for.

  • schemaName The name of the schema you want to get logs for.

Returns

A list of logs for the schema.

public LogsDto SchemaLogs(string collectionName, string schemaName, SchemasUriParameterBuilder schemasUriParameterBuilder)

This function returns a list of logs for a specific schema.

Parameters

  • collectionName The name of the collection you want to get the schema logs for.

  • schemaName The name of the schema you want to get the logs for.

  • SchemasUriParameterBuilder This is a class that contains the parameters that can be passed to the API.

Returns

A LogsDto object.

private readonly string _requestUriBase

private Uri SchemasUri()

It returns a URI that points to the schemas endpoint.

private Uri SchemasUri( SchemasUriParameterBuilder schemasUriParameterBuilder)

It takes a SchemasUriParameterBuilder object as a parameter, and returns a Uri object.

Parameters

  • SchemasUriParameterBuilder A class that builds the query string parameters for the schemas endpoint.

private Uri SchemaUri(string collectionName, string schemaName)

It returns a URI for a specific schema in a specific collection

Parameters

  • collectionName The name of the collection you want to create the schema in.

  • schemaName The name of the schema to be created.

private Uri SchemaStatsUri(string collectionName, string schemaName)

It returns a URI that points to the stats for a specific schema in a specific collection.

Parameters

  • collectionName The name of the collection you want to get the schema stats for.

  • schemaName The name of the schema.

private Uri SchemaLogsUri(string collectionName, string schemaName)

This function returns a URI for the schema logs endpoint

Parameters

  • collectionName The name of the collection you want to create a schema for.

  • schemaName The name of the schema.

private Uri SchemaLogsUri(string collectionName, string schemaName, SchemasUriParameterBuilder schemasUriParameterBuilder)

It returns a URI for the schema logs endpoint.

Parameters

  • collectionName The name of the collection.

  • schemaName The name of the schema.

  • SchemasUriParameterBuilder This is a class that helps you build the query parameters for the request.

PreviousSchemasNextSchemaDto

Last updated 2 years ago

public ()

public ( schemasUriParameterBuilder)

public (string collectionName, string schemaName)

public (string collectionName, string schemaName)

public (string collectionName, string schemaName)

public (string collectionName, string schemaName, schemasUriParameterBuilder)

private readonly string

private Uri ()

private Uri ( schemasUriParameterBuilder)

private Uri (string collectionName, string schemaName)

private Uri (string collectionName, string schemaName)

private Uri (string collectionName, string schemaName)

private Uri (string collectionName, string schemaName, schemasUriParameterBuilder)

SchemasDto
Schemas
SchemasDto
Schemas
SchemasUriParameterBuilder
SchemaDto
Schema
StatsDto
SchemaStats
LogsDto
SchemaLogs
LogsDto
SchemaLogs
SchemasUriParameterBuilder
_requestUriBase
SchemasUri
SchemasUri
SchemasUriParameterBuilder
SchemaUri
SchemaStatsUri
SchemaLogsUri
SchemaLogsUri
SchemasUriParameterBuilder