ft_transcendence/frontend/src/api/generated/docs/GetUser200Response.md
Maieul BOYER e8b0b7e310 feat(frontend/openapi): Generated Openapi client for frontend
Generated The API client using the openapi.json file generated from the
services
2025-11-11 00:20:26 +01:00

835 B

GetUser200Response

Properties

Name Type
kind string
msg string
payload GetUser200ResponsePayload

Example

import type { GetUser200Response } from ''

// TODO: Update the object below with actual values
const example = {
  "kind": null,
  "msg": null,
  "payload": null,
} satisfies GetUser200Response

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 GetUser200Response
console.log(exampleParsed)

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