> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crossmint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Stellar

> Kotlin Data Class

**Data Class**

```kotlin theme={null}
data class Stellar(val contractId: String, val method: String, val args: Map<String, String>, val memo: String? = null) : RawTransactionParams
```

## Constructors

```kotlin theme={null}
constructor(contractId: String, method: String, args: Map<String, String>, memo: String? = null)
```

## Properties

### args

```kotlin theme={null}
val args: Map<String, String>
```

### contractId

```kotlin theme={null}
val contractId: String
```

### memo

```kotlin theme={null}
val memo: String? = null
```

### method

```kotlin theme={null}
val method: String
```
