Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 1.91 KB

createtopicrequestdto.md

File metadata and controls

19 lines (14 loc) · 1.91 KB

CreateTopicRequestDto

Example Usage

import { CreateTopicRequestDto } from "@novu/api/models/components";

let value: CreateTopicRequestDto = {
  key: "<key>",
  name: "<value>",
};

Fields

Field Type Required Description
key string ✔️ User defined custom key and provided by the user that will be an unique identifier for the Topic created.
name string ✔️ User defined custom name and provided by the user that will name the Topic created.