/// <summary>Constructs a new Send request.</summary>
 public SendRequest(Google.Apis.Services.IClientService service, Google.Apis.FirebaseCloudMessaging.v1.Data.SendMessageRequest body, string parent)
     : base(service)
 {
     Parent = parent;
     Body   = body;
     InitParameters();
 }
 /// <summary>Send a message to specified target (a registration token, topic or condition).</summary>
 /// <param name="body">The body of the request.</param>
 /// <param name="parent">Required. It contains the Firebase project id (i.e. the unique identifier for your Firebase
 /// project), in the format of `projects/{project_id}`. For legacy support, the numeric project number with no padding
 /// is also supported in the format of `projects/{project_number}`.</param>
 public virtual SendRequest Send(Google.Apis.FirebaseCloudMessaging.v1.Data.SendMessageRequest body, string parent)
 {
     return(new SendRequest(service, body, parent));
 }