input_credentials_google_pay property

InputCredentialsGooglePay get input_credentials_google_pay

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

InputCredentialsGooglePay get input_credentials_google_pay {
  try {
    if (rawData["input_credentials_google_pay"] is Map == false) {
      return InputCredentialsGooglePay({});
    }
    return InputCredentialsGooglePay(rawData["input_credentials_google_pay"] as Map);
  } catch (e) {
    return InputCredentialsGooglePay({});
  }
}
set input_credentials_google_pay (InputCredentialsGooglePay value)

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set input_credentials_google_pay(InputCredentialsGooglePay value) {
  rawData["input_credentials_google_pay"] = value.toJson();
}