I just want to send back an attribute that was not defined in POJO class. My POJO class is this
public class PostData {
    @SerializedName("Token")
    @Expose
    private String token;
    @SerializedName("Amount")
    @Expose
    private Integer amount;
    @SerializedName("AuthID")
    @Expose
    private String authID;
    public String getToken() {
        return token;
    }
    public void setToken(String token) {
        this.token = token;
    }
    public Integer getAmount() {
        return amount;
    }
    public void setAmount(Integer amt) {
        this.amount = amt;
    }
    public String getAuthID(){return authID;}
    public void setAuthID(String authID){
        this.authID = authID;
    }
}
Amount,Token,AuthID are sent from the client side to API.Here I used HTTP Cloud function as an HTTP POST.I need to send back the TransID to client side which is not there in POJO class.In client side I need to read the response and store it. Here is my cloud function code:
exports.Add = functions.https.onRequest((req,res)=>{
//var testPublicKey = [xxxxxxxxxxxxxxxxx]
var stripe = require("stripe")("stripe_key");
console.log("Token:"+req.body.Token)
console.log("Amount:"+req.body.Amount)
var tokenToCharge = req.body.Token;
const amountToCharge = req.body.Amount;
var authID = req.body.AuthID;
const databaseRef = admin.firestore();
const payer = databaseRef.collection('deyaPayUsers').doc(authID).collection('Wallet').doc(authID);
 const balance = payer.Usd
 stripe.charges.create({
amount : amountToCharge,
currency : "usd",
description : "charge created",
source : tokenToCharge,
}, function(err, charge) {
if(charge.status === "succeeded"){
var trans = databaseRef.runTransaction(t=>{
 return t.get(payer)
    .then(doc=>{
     var updatedBalance = doc.data().Usd + parseInt(charge.amount);
     t.update(payer,{Usd : updatedBalance});
    });//return close
 }).then(result=>{
 console.log('Transaction success!');
 }).catch(err=>{
 console.log('Transaction Failure:',err);
 });
 }
});
});//end of stripe create charge
 
    