/** * LINE Messaging API * This document describes LINE Messaging API. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Filter } from "./filter"; import { Limit } from "./limit"; import { Message } from "./message"; import { Recipient } from "./recipient"; export type NarrowcastRequest = { /** * List of Message objects. * * @see messages Documentation */ messages: Array; /** * * @see recipient Documentation */ recipient?: Recipient; /** * * @see filter Documentation */ filter?: Filter; /** * * @see limit Documentation */ limit?: Limit; /** * `true`: The user doesn’t receive a push notification when a message is sent. `false`: The user receives a push notification when the message is sent (unless they have disabled push notifications in LINE and/or their device). The default value is false. * * @see notificationDisabled Documentation */ notificationDisabled?: boolean; };