export interface Concentre { protests?: Protests; judicialActions?: JudicialActions; REFIN?: REFIN; PEFIN?: PEFIN; scoring?: Scoring; } export interface DjangoConcentre { protests?: DjangoProtests; judicial_actions?: DjangoJudicialActions; REFIN?: DjangoREFIN; PEFIN?: DjangoPEFIN; scoring?: DjangoScoring; } export interface DetailedConcentre { totalAmount?: any; totalValue?: any; } export interface DjangoDetailedConcentre { total_amount?: any; total_value?: any; } export interface Protests { initialDate?: any; finalDate?: any; totalAmount?: any; value?: any; cityOfOrigin?: any; detail?: { dateAnnotacion?: any; notaryNumber?: any; codeOfNature?: any; noteValue?: any; squareCode?: any; federativeUnit?: any; localityOfRegistry?: any; subJudiceType?: any; receivingDate?: any; branchNumber?: any; verifyingDigit?: any; dateAddedNote?: any; hourAddedNote?: any; cadusKey?: any; subJudice?: any; }; } export interface DjangoProtests { initial_date?: any; final_date?: any; total_amount?: any; value?: any; city_of_origin?: any; detail?: { date_annotacion?: any; notary_number?: any; code_of_nature?: any; note_value?: any; square_code?: any; federative_unit?: any; locality_of_registry?: any; sub_judice_type?: any; receiving_date?: any; branch_number?: any; verifying_digit?: any; date_added_note?: any; hour_added_note?: any; cadus_key?: any; sub_judice?: any; }; } export interface JudicialActions { initialDate?: any; finalDate?: any; totalAmount?: any; value?: any; cityOfOrigin?: any; natureDescription?: any; detail?: { dateOfOccurrence?: any; civilCourt?: any; distributorNumber?: any; natureCode?: any; shareValue?: any; DDI?: any; federationUnit?: any; cityName?: any; principal?: any; branchNumber?: any; verifyingDigit?: any; dateAddedNote?: any; hourAddedNote?: any; cadusKey?: any; subJudice?: any; }; } export interface DjangoJudicialActions { initial_date?: any; final_date?: any; total_amount?: any; value?: any; city_of_origin?: any; nature_description?: any; detail?: { date_of_occurrence?: any; civil_court?: any; distributor_number?: any; nature_code?: any; share_value?: any; DDI?: any; federation_unit?: any; city_name?: any; principal?: any; branch_number?: any; verifying_digit?: any; date_added_note?: any; hour_added_note?: any; cadus_key?: any; sub_judice?: any; }; } export interface REFIN { initialDate?: any; finalDate?: any; totalAmount?: any; value?: any; latestCreditor?: any; detail?: { dateOfOccurrence?: any; natureCode?: any; CNPJParticipant?: any; occurrenceValue?: any; DDI?: any; federationUnit?: any; originCompanyName?: any; cityName?: any; principal?: any; cadusKey?: any; cadusKeySeries?: any; subJudice?: any; branchNumber?: any; verifyingDigit?: any; dateAddedNote?: any; hourAddedNote?: any; contractCode?: any; nature?: any; }; } export interface DjangoREFIN { initial_date?: any; final_date?: any; total_amount?: any; value?: any; latest_creditor?: any; detail?: { date_of_occurrence?: any; nature_code?: any; CNPJ_participant?: any; occurrence_value?: any; DDI?: any; federation_unit?: any; origin_company_name?: any; city_name?: any; principal?: any; cadus_key?: any; cadus_key_series?: any; sub_judice?: any; branch_number?: any; verifying_digit?: any; date_added_note?: any; hour_added_note?: any; contract_code?: any; nature?: any; }; } export interface PEFIN { initialDate?: any; finalDate?: any; totalAmount?: any; latestValue?: any; lastBankName?: any; occurrenceType?: any; creditor?: { lenderDocument?: any; lenderName?: any; occurrenceType?: any; }; detail?: { dateOfOccurrence?: any; natureCode?: any; occurrenceValue?: any; DDI?: any; principal?: any; contractCode?: any; subJudice?: any; cadusKeySeries?: any; cadusKey?: any; occurrenceType?: any; branchName?: any; verifyingDigit?: any; dateAddedNote?: any; hourAddedNote?: any; modality?: any; }; } export interface DjangoPEFIN { initial_date?: any; final_date?: any; total_amount?: any; latest_value?: any; last_bank_name?: any; occurrence_type?: any; creditor?: { lender_document?: any; lender_name?: any; occurrence_type?: any; }; detail?: { date_of_occurrence?: any; nature_code?: any; occurrence_value?: any; DDI?: any; principal?: any; contract_code?: any; sub_judice?: any; cadus_key_series?: any; cadus_key?: any; occurrence_type?: any; branch_name?: any; verifying_digit?: any; date_added_note?: any; hour_added_note?: any; modality?: any; }; } export interface Scoring { scoreCode?: any; punctuation?: any; message?: any; percent?: any; } export interface DjangoScoring { score_code?: any; punctuation?: any; message?: any; percent?: any; }