class crmDownloadGenQuoteResponse { String? error; String? quoteFilepath; String? message; int? sessionExists; crmDownloadGenQuoteResponse( {this.error, this.quoteFilepath, this.message, this.sessionExists}); crmDownloadGenQuoteResponse.fromJson(Map json) { error = json['error']; quoteFilepath = json['quote_filepath']; message = json['message']; sessionExists = json['session_exists']; } Map toJson() { final Map data = new Map(); data['error'] = this.error; data['quote_filepath'] = this.quoteFilepath; data['message'] = this.message; data['session_exists'] = this.sessionExists; return data; } }