# TrafficSource

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    TrafficSource:
      type: object
      properties:
        type:
          type: string
          nullable: true
        name:
          type: string
          nullable: true
        url:
          type: string
          nullable: true
        percentage:
          type: integer
          format: int32
      additionalProperties: false
      x-apidog-orders:
        - type
        - name
        - url
        - percentage
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.scrapingduck.com
    description: Prod Env
security: []

```
