Package com.restfb.types
Class Payment.Dispute
- java.lang.Object
-
- com.restfb.types.AbstractFacebookType
-
- com.restfb.types.Payment.Dispute
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- Payment
public static class Payment.Dispute extends AbstractFacebookType
Contains the information related to a dispute, including the user_comment and user_email which is provided by the consumer when the dispute is initiated. Additionally, contains the current status of the dispute, the time the dispute was created an an resolution reason, if available.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Dispute()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getReason()
The reason the developer or Facebook gave to resolve the dispute, after it has been resolved.String
getStatus()
Current status of the dispute.Date
getTimeCreated()
The time the dispute was created.String
getUserComment()
Comment provided by the consumer when the dispute is initiated.String
getUserEmail()
Email provided by the consumer when the dispute is initiated.void
setReason(String reason)
The reason the developer or Facebook gave to resolve the dispute, after it has been resolved.void
setStatus(String status)
Current status of the dispute.void
setTimeCreated(Date timeCreated)
The time the dispute was created.void
setUserComment(String userComment)
Comment provided by the consumer when the dispute is initiated.void
setUserEmail(String userEmail)
Email provided by the consumer when the dispute is initiated.-
Methods inherited from class com.restfb.types.AbstractFacebookType
equals, hashCode, toString
-
-
-
-
Constructor Detail
-
Dispute
public Dispute()
-
-
Method Detail
-
getUserComment
public String getUserComment()
Comment provided by the consumer when the dispute is initiated.
-
setUserComment
public void setUserComment(String userComment)
Comment provided by the consumer when the dispute is initiated.
-
getUserEmail
public String getUserEmail()
Email provided by the consumer when the dispute is initiated.
-
setUserEmail
public void setUserEmail(String userEmail)
Email provided by the consumer when the dispute is initiated.
-
getTimeCreated
public Date getTimeCreated()
The time the dispute was created.
-
setTimeCreated
public void setTimeCreated(Date timeCreated)
The time the dispute was created.
-
getReason
public String getReason()
The reason the developer or Facebook gave to resolve the dispute, after it has been resolved.
-
-