18779efd5Sopenharmony_ci/**
28779efd5Sopenharmony_ci * Copyright (c) 2022 Huawei Device Co., Ltd.
38779efd5Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
48779efd5Sopenharmony_ci * you may not use this file except in compliance with the License.
58779efd5Sopenharmony_ci * You may obtain a copy of the License at
68779efd5Sopenharmony_ci *
78779efd5Sopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
88779efd5Sopenharmony_ci *
98779efd5Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software
108779efd5Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
118779efd5Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
128779efd5Sopenharmony_ci * See the License for the specific language governing permissions and
138779efd5Sopenharmony_ci * limitations under the License.
148779efd5Sopenharmony_ci */
158779efd5Sopenharmony_ci
168779efd5Sopenharmony_ciimport BaseColumns from './BaseColumns';
178779efd5Sopenharmony_ci
188779efd5Sopenharmony_ci/**
198779efd5Sopenharmony_ci * Field constants in the contact data table
208779efd5Sopenharmony_ci */
218779efd5Sopenharmony_ciexport default class DataColumns extends BaseColumns {
228779efd5Sopenharmony_ci  static readonly TYPE_ID: string = 'type_id';
238779efd5Sopenharmony_ci  static readonly RAW_CONTACT_ID: string = 'raw_contact_id';
248779efd5Sopenharmony_ci  static readonly READ_ONLY: string = 'read_only';
258779efd5Sopenharmony_ci  static readonly VERSION: string = 'version';
268779efd5Sopenharmony_ci  static readonly IS_PREFERRED_NUMBER: string = 'is_preferred_number';
278779efd5Sopenharmony_ci  static readonly DETAIL_INFO: string = 'detail_info';
288779efd5Sopenharmony_ci  static readonly FAMILY_NAME: string = 'family_name';
298779efd5Sopenharmony_ci  static readonly MIDDLE_NAME_PHONETIC: string = 'middle_name_phonetic';
308779efd5Sopenharmony_ci  static readonly GIVEN_NAME: string = 'given_name';
318779efd5Sopenharmony_ci  static readonly GIVEN_NAME_PHONETIC: string = 'given_name_phonetic';
328779efd5Sopenharmony_ci  static readonly ALIAS_DETAIL_INTO: string = 'alias_detail_info';
338779efd5Sopenharmony_ci  static readonly PHONETIC_NAME: string = 'phonetic_name';
348779efd5Sopenharmony_ci  static readonly POSITION: string = 'position';
358779efd5Sopenharmony_ci  static readonly EXTEND1: string = 'extend1';
368779efd5Sopenharmony_ci  static readonly EXTEND2: string = 'extend2';
378779efd5Sopenharmony_ci  static readonly EXTEND3: string = 'extend3';
388779efd5Sopenharmony_ci  static readonly EXTEND4: string = 'extend4';
398779efd5Sopenharmony_ci  static readonly CITY: string = 'city';
408779efd5Sopenharmony_ci  static readonly COUNTRY: string = 'country';
418779efd5Sopenharmony_ci  static readonly NEIGHBORHOOD: string = 'neighborhood';
428779efd5Sopenharmony_ci  static readonly POBOX: string = 'pobox';
438779efd5Sopenharmony_ci  static readonly POSTCODE: string = 'postcode';
448779efd5Sopenharmony_ci  static readonly REGION: string = 'region';
458779efd5Sopenharmony_ci  static readonly STREET: string = 'street';
468779efd5Sopenharmony_ci  static readonly ALPHA_NAME: string = 'alpha_name';
478779efd5Sopenharmony_ci  static readonly OTHER_LAN_LAST_NAME: string = 'other_lan_last_name';
488779efd5Sopenharmony_ci  static readonly OTHER_LAN_FIRST_NAME: string = 'other_lan_first_name';
498779efd5Sopenharmony_ci  static readonly EXTEND5: string = 'extend5';
508779efd5Sopenharmony_ci  static readonly LAN_STYLE: string = 'lan_style';
518779efd5Sopenharmony_ci  static readonly CUSTOM_DATA: string = 'custom_data';
528779efd5Sopenharmony_ci  static readonly EXTEND6: string = 'extend6';
538779efd5Sopenharmony_ci  static readonly EXTEND7: string = 'extend7';
548779efd5Sopenharmony_ci  static readonly BLOB_DATA: string = 'blob_data';
558779efd5Sopenharmony_ci  static readonly SYN_1: string = 'syn_1';
568779efd5Sopenharmony_ci  static readonly SYN_2: string = 'syn_2';
578779efd5Sopenharmony_ci  static readonly SYN_3: string = 'syn_3';
588779efd5Sopenharmony_ci  static readonly FAVORITE: string = 'favorite';
598779efd5Sopenharmony_ci  static readonly CONTENT_TYPE: string = 'content_type';
608779efd5Sopenharmony_ci}