---
title: "PaymentTypeListResponse"
url: "https://developer.retailexpress.com.au/apis/public-api-0/versions/d2454f6f-56f1-4fd6-9cd1-82871d94bd1c/schemas/PaymentTypeListResponse"
---

> Full API specification: https://developer.retailexpress.com.au/apis/public-api-0/versions/d2454f6f-56f1-4fd6-9cd1-82871d94bd1c.md

# PaymentTypeListResponse

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: PublicApi
  version: 0.1.0
servers:
  - url: https://api.retailexpress.com.au/{basePath}
    variables:
      basePath:
        default: v1
components:
  schemas:
    PageNumber:
      title: Page Number
      type: integer
      description: The current page number
    TotalRecords:
      title: Total Record Count
      type: integer
      description: The total number of records in your query
    TotalPages:
      title: Total Page Count
      type: integer
      description: The total number of pages in your query
    PaymentType:
      type: object
      properties:
        is_enabled:
          title: IsEnabled
          type: boolean
          description: A flag indicating if the payment method is enabled
        last_modified_on:
          title: Last Modified On
          type: string
          description: The date the payment type was last modified
          format: date-time
        summarised_for_accounting:
          title: IsSummarised
          type: boolean
          description: A flag indicating if the payment method is summarised for
            accounting purposes
        name:
          title: Name
          type: string
          description: The name of the payment type
        id:
          title: ID
          type: string
          description: The ID of the payment type
      description: A payment type
    PageSize:
      title: Page Size
      type: integer
      description: The maximum number of records in a single page
    PaymentTypeListResponse:
      type: object
      properties:
        page_number:
          $ref: "#/components/schemas/PageNumber"
        total_records:
          $ref: "#/components/schemas/TotalRecords"
        total_pages:
          $ref: "#/components/schemas/TotalPages"
        payment_types:
          type: array
          description: A list of payment types
          items:
            $ref: "#/components/schemas/PaymentType"
        page_size:
          $ref: "#/components/schemas/PageSize"
```
