module FFaker::AddressIN
def city
def city fetch_sample(CITY) end
def country
def country FFaker::Address.country('IN') end
def country_code
def country_code FFaker::Address.country_code('India') end
def state
def state fetch_sample(STATE) end
def state_abbr
def state_abbr fetch_sample(STATE_ABBR) end
def state_and_union_territory
def state_and_union_territory fetch_sample(STATE + UNION_TERRITORY) end
def state_and_union_territory_abbr
def state_and_union_territory_abbr fetch_sample(STATE_ABBR + UNION_TERRITORY_ABBR) end
def time_zone
def time_zone 'Asia/Kolkata' end
def union_territory
def union_territory fetch_sample(UNION_TERRITORY) end
def union_territory_abbr
def union_territory_abbr fetch_sample(UNION_TERRITORY_ABBR) end
def zip_code
def zip_code FFaker.numerify('######') end