func recommend()

in Sources/Bridget/native.swift [1117:1140]


  func recommend(commentId: String, completion: @escaping (Result<DiscussionServiceResponse, Error>) -> Void)

  ///
  /// - Parameters:
  ///   - shortUrl: 
  ///   - body: 
  ///   - completion: Result<DiscussionServiceResponse, Error> wrapping return and following Exceptions: 
  func comment(shortUrl: String, body: String, completion: @escaping (Result<DiscussionServiceResponse, Error>) -> Void)

  ///
  /// - Parameters:
  ///   - shortUrl: 
  ///   - body: 
  ///   - parentCommentId: 
  ///   - completion: Result<DiscussionServiceResponse, Error> wrapping return and following Exceptions: 
  func reply(shortUrl: String, body: String, parentCommentId: String, completion: @escaping (Result<DiscussionServiceResponse, Error>) -> Void)

  ///
  ///   - completion: Result<DiscussionServiceResponse, Error> wrapping return and following Exceptions: 
  func getUserProfile(completion: @escaping (Result<DiscussionServiceResponse, Error>) -> Void)

}

open class DiscussionProcessor /* Discussion */ {