# PaymentStatusResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    PaymentStatusResponse:
      type: object
      properties:
        payment_id:
          type: number
          description: Payment Id
        amount:
          type: number
          description: Amount
          examples:
            - '1'
        currency:
          enum:
            - rub
            - usd
          type: string
          description: Currency
          examples:
            - usd
        plan_period:
          type: string
          description: Period
          enum:
            - month
            - year
        status:
          type: string
          description: Status
        type:
          type: string
          description: Tariff type
        title:
          type: string
          description: Tariff title
      required:
        - payment_id
        - amount
        - currency
        - plan_period
        - status
        - type
      x-apidog-orders:
        - payment_id
        - amount
        - currency
        - plan_period
        - status
        - type
        - title
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api-v2.streamvi.io
    description: Production
security: []

```
