# Quote Schema

## Main Properties
- **id**: (string, required) - Quote ID
- **accessories**: (array of objects) - List of accessories related to the quote.
- **address**: (object) - Address object containing details like city and country.
  - **cityOfBirth**: (string) - City of Birth.
  - **countryOfBirth**: (string) - Country of Birth.
- **dateOfBirth**: (date) - Date of birth (format: YYYY-MM-DD).
- **coverStart**: (date) - Date to start cover on quote hydration.
- **criminalConvictionsPendingReview**: (boolean) - Indicates if there are criminal convictions pending review.
- **cycleStorage**: (integer) - Enum for Cycle Storage Location.
- **declarations**: (array of objects) - List of declarations made on the quote.
- **email**: (string) - Email address.
- **emailVerified**: (boolean) - Indicates if the email is verified.
- **eventTrigger**: (string) - The event that triggered the request to edit the quote.
- **firstName**: (string) - First name of the individual.
- **lastName**: (string) - Last name of the individual.
- **phoneNumber**: (string) - Phone number of the individual.
- **partnerId**: (string) - Third Party / Partner ID.
- **personId**: (string) - Person ID associated with the quote.
- **products**: (array of objects) - List of products related to the quote.
- **quoteAttributes**: (array of objects) - Additional attributes related to the quote.
- **referralCode**: (string) - Referral code if applicable.
- **verificationType**: (string) - Type of verification used for the quote.

## Consent and Preferences
- **handedOff**: (boolean) - Whether the quote handoff endpoint was called for this quote.
- **hasSetMarketingConsent**: (boolean) - Indicates if the user has set marketing consent.
- **hydrated**: (boolean) - If the quote is hydrated.
- **inputQuotePerks**: (array of objects) - Perks associated with the input quote.
- **lastTheft**: (integer) - Enum value for last theft declaration.
- **marketingConsent**: (boolean) - If the user has allowed marketing consent.

## API Information
### Base URL
- `https://api-gb.app.laka.co/v2/quotes/quote/{id}`

### Example Request
```bash
curl --request PATCH \
     --url https://api-gb.app.laka.co/v2/quotes/quote/id \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```
