> For the complete documentation index, see [llms.txt](https://developer.nilvera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.nilvera.com/nilvera-model/marketplace/store.md).

# Store

```csharp
    public class StoreResponse
    {
        public int ID { get; set; }
        public string UUID { get; set; }
        public string Name { get; set; }
        public StoreType StoreType { get; set; }
        public string StoreAccountJson { get; set; }
        public bool IsActive { get; set; }
        public ConnectionStatus ConnectionStatus { get; set; }
    }
```

### StoreResponse Sınıfı Özellikleri ve Açıklamaları

> `StoreResponse` nesnesi mağaza bilgisi nesnesidir.

<table><thead><tr><th>Alan</th><th width="241">Açıklama</th><th>Değer</th></tr></thead><tbody><tr><td><strong>ID</strong></td><td>Mağaza ID</td><td>123</td></tr><tr><td><strong>UUID</strong></td><td>Mağaza UUID</td><td>A3F7C9E1-5B2D-4F8A-9C6E-1D2B7E4A9F30</td></tr><tr><td><strong>Name</strong></td><td>Mağaza adı</td><td>string</td></tr><tr><td><strong>StoreType</strong></td><td>Mağaza tipi</td><td>Trendyol</td></tr><tr><td><strong>StoreAccountJson</strong></td><td>Mağaza entegrasyon bilgileri</td><td>string</td></tr><tr><td><strong>IsActive</strong></td><td>Mağaza aktif/pasif bilgisi</td><td>true</td></tr><tr><td><strong>ConnectionStatus</strong></td><td>Mağaza bağlantı durumu</td><td>Success</td></tr></tbody></table>
