Survey

public protocol Survey : Decodable, Encodable

Represents a type for surveys.

  • id

    Value representing the entity id.

    Declaration

    Swift

    var id: Int { get set }
  • Returns the url of the image of the survey.

    Declaration

    Swift

    var imageUrl: String { get set }
  • Returns the url of the original image of the survey.

    Declaration

    Swift

    var originalImageUrl: String { get set }
  • Survey question.

    Declaration

    Swift

    var question: String { get set }
  • Survey description.

    Declaration

    Swift

    var surveyDescription: String { get set }
  • Type of survey.

    Declaration

    Swift

    var surveyType: SurveyType { get }
  • Returns the url of the thumbnail of the survey.

    Declaration

    Swift

    var thumbImageUrl: String { get set }