describe-symbols
Retrieve detailed documentation for AccelByte Gaming Services SDK symbols, including descriptions, parameters, and usage examples to support code generation.
Instructions
Describe multiple symbols with pagination.
Usage Patterns:
describe_symbols(limit: 100, offset: 0) → returns the first 100 symbols (paginated)
describe_symbols(ids: ["UserProfile@iam.model"]) → returns one symbol (paginated)
describe_symbols(ids: ["Store@platform.model", "PublishStore@platform.function"]) → returns multiple symbols (paginated)
Recommended Workflow:
Search: search_symbols(query: "user creation") → get the IDs of the symbols that match the query and other symbols that are referenced by the matched symbols.
Describe: describe_symbols( ids: [ "CreateUser@iam.function", "CreateUserRequest@iam.model", "CreateUserResponse@iam.model" ] )
Analyze: Use the symbol's description, imports, example, fields, parameters, and return_type for instantiation and usage information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | List of symbol IDs used to fetch detailed information for each symbol. | |
| limit | No | Maximum number of symbols to return (default: 25). | |
| offset | No | Offset for pagination (default: 0). |