/**
 * 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.
 */

export type MembersIdsResponse = {
  /**
   * List of user IDs of members in the group chat. Only users of LINE for iOS and LINE for Android are included in `memberIds`.
   */
  memberIds: Array<string> /**/;
  /**
   * A continuation token to get the next array of user IDs of the members in the group chat. Returned only when there are remaining user IDs that were not returned in `memberIds` in the original request.
   */
  next?: string /**/;
};
