> 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/credithistory.md).

# CreditHistory

```csharp
public class CreditHistoryPagination
{
    public int Page { get; set; }

    public int PageSize { get; set; }

    public int? TotalCount { get; set; }
    
    public int? TotalUpdatedCredit { get; set; }
    
    public int? TotalOrderCount { get; set; }

    public int? TotalPages { get; set; }

    public IEnumerable<CreditHistoryResponse> Content { get; set; }
}
```

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

`CreditHistoryPagination` sınıfı, siparişler için kullanılan kredileri listeleyen ve sayfalama bilgilerini içeren response nesnesidir.

<table><thead><tr><th>Değer</th><th width="485">Açıklama</th><th>Örnek</th></tr></thead><tbody><tr><td><strong>Page</strong></td><td>Mevcut sayfa numarasıdır. Sayfalama yapılan veride hangi sayfanın döndüğünü belirtir.</td><td>1</td></tr><tr><td><strong>PageSize</strong></td><td>Bir sayfada kaç kayıt bulunduğunu belirtir.</td><td>10</td></tr><tr><td><strong>TotalCount</strong></td><td>Tüm sayfalardaki toplam kayıt sayısını gösterir.</td><td>100</td></tr><tr><td><strong>TotalUpdatedCredit</strong></td><td>Toplam düşülen kredi sayısını gösterir.</td><td>100</td></tr><tr><td><strong>TotalOrderCount</strong></td><td>Kredi düşülen toplam sipariş sayısını verir.</td><td>100</td></tr><tr><td><strong>TotalPages</strong></td><td>Toplam sayfa sayısını ifade eder.</td><td>2</td></tr><tr><td><strong>Content</strong></td><td>Kredi listesi</td><td></td></tr></tbody></table>

***

```csharp
public class CreditHistoryResponse
{
    public int OrderCount { get; set; }
    public int CreditCount { get; set; }
    public int UpdatedCredit { get; set; }
    public DateTime CreatedDate { get; set; }
    public int LineTotalOrderCount { get; set; }
}
```

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

`CreditHistoryResponse` sınıfı, siparişler için kullanılan kredileri listeleyen ve sayfalama bilgilerini içeren response nesnesidir.

<table><thead><tr><th>Değer</th><th width="356">Açıklama</th><th>Örnek</th></tr></thead><tbody><tr><td><strong>OrderCount</strong></td><td>Kredi kullanılan sipariş sayısı</td><td>3</td></tr><tr><td><strong>CreditCount</strong></td><td>Sipariş sayısı kadar kullanılan kredi miktarı</td><td>1</td></tr><tr><td><strong>UpdatedCredit</strong></td><td>Kullanılan Kredi sayısı</td><td>59</td></tr><tr><td><strong>CreatedDate</strong></td><td>Oluşturulma tarihi</td><td>2026-01-01T23:29:30</td></tr><tr><td><strong>LineTotalOrderCount</strong></td><td>Toplam sipariş sayısı</td><td>177</td></tr></tbody></table>

Örnek olarak verilen verilerle şu bilgiler kastedilmektedir:

* **3** sipariş için **1** kredi kullanılmıştır. Toplamda ise **177** sipariş için **59** kredi kullanılmıştır.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.nilvera.com/nilvera-model/marketplace/credithistory.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
