Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 1.11 KB

File metadata and controls

50 lines (37 loc) · 1.11 KB

ApiV1CreativePoolsGet200ResponseDataInner

Properties

Name Type
id number
title string
type string
sortType string
convType number
tags string
tagids Array<string>
itemsCount number
totalSizes number

Example

import type { ApiV1CreativePoolsGet200ResponseDataInner } from 'goadserver-sdk'

// TODO: Update the object below with actual values
const example = {
  "id": null,
  "title": null,
  "type": null,
  "sortType": null,
  "convType": null,
  "tags": null,
  "tagids": null,
  "itemsCount": null,
  "totalSizes": null,
} satisfies ApiV1CreativePoolsGet200ResponseDataInner

console.log(example)

// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)

// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as ApiV1CreativePoolsGet200ResponseDataInner
console.log(exampleParsed)

[Back to top] [Back to API list] [Back to Model list] [Back to README]