/*
* LINE Messaging API
*
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GroupMemberCountResponse {
/// The count of members in the group chat. The number returned excludes the LINE Official Account.
#[serde(rename = "count")]
pub count: i32,
}
impl GroupMemberCountResponse {
pub fn new(count: i32) -> GroupMemberCountResponse {
GroupMemberCountResponse {
count,
}
}
}