class Form::Sales::Questions::PreviousPostcodeKnown < ::Form::Question def initialize(id, hsh, page) super @id = "ppcodenk" @check_answer_label = "Buyer 1’s last settled accommodation" @header = "Do you know the postcode of buyer 1’s last settled accommodation?" @type = "radio" @answer_options = ANSWER_OPTIONS @conditional_for = { "ppostcode_full" => [0], } @hint_text = "This is also known as the household’s 'last settled home'" @hidden_in_check_answers = { "depends_on" => [ { "ppcodenk" => 0, }, { "ppcodenk" => 1, }, ], } @question_number = 57 @disable_clearing_if_not_routed_or_dynamic_answer_options = true end ANSWER_OPTIONS = { "0" => { "value" => "Yes" }, "1" => { "value" => "No" }, }.freeze end