Files
discoursejs/docs/sdk/models/operations/createinviteresponsebody.md

4.5 KiB
Raw Permalink Blame History

CreateInviteResponseBody

success response

Example Usage

import { CreateInviteResponseBody } from "@lukehagar/discoursejs/sdk/models/operations";

let value: CreateInviteResponseBody = {
  createdAt: "2021-01-01T12:00:00.000Z",
  customMessage: "Hello world!",
  email: "not-a-user-yet@example.com",
  emailed: false,
  expired: false,
  expiresAt: "2021-02-01T12:00:00.000Z",
  groups: [
    "<value>",
  ],
  id: 42,
  link: "http://example.com/invites/9045fd767efe201ca60c6658bcf14158",
  topics: [
    "<value>",
  ],
  updatedAt: "2021-01-01T12:00:00.000Z",
};

Fields

Field Type Required Description Example
createdAt string N/A 2021-01-01T12:00:00.000Z
customMessage string N/A Hello world!
email string N/A not-a-user-yet@example.com
emailed boolean N/A false
expired boolean N/A false
expiresAt string N/A 2021-02-01T12:00:00.000Z
groups any[] N/A []
id number N/A 42
link string N/A http://example.com/invites/9045fd767efe201ca60c6658bcf14158
topics any[] N/A []
updatedAt string N/A 2021-01-01T12:00:00.000Z