All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wix.fax.phaxio.model.FaxStatusResponseParser.scala Maven / Gradle / Ivy

The newest version!
package com.wix.fax.phaxio.model

import org.json4s.DefaultFormats
import org.json4s.native.Serialization

class FaxStatusResponseParser {
  implicit val formats = DefaultFormats

  def stringify(obj: FaxStatusResponse): String = {
    Serialization.write(obj)
  }

  def parse(json: String): FaxStatusResponse = {
    Serialization.read[FaxStatusResponse](json)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy