
com.yukihirai0505.sFacebook.model.Relationship.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfacebook_2.11 Show documentation
Show all versions of sfacebook_2.11 Show documentation
A Scala library for the Facebook API
The newest version!
package com.yukihirai0505.sFacebook.model
/**
* author Yuki Hirai on 2016/11/09.
*/
sealed abstract class Relationship(val value: String)
object Relationship {
case object FOLLOW extends Relationship("follow")
case object UN_FOLLOW extends Relationship("unfollow")
case object BLOCK extends Relationship("block")
case object UN_BLOCK extends Relationship("unblock")
case object APPROVE extends Relationship("approve")
case object IGNORE extends Relationship("ignore")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy