***

title: "Province"
generated: true
---------------

<GenerationInfo sourceFile="packages/core/src/entity/region/province.entity.ts" sourceLine="13" packageName="@vendure/core" />

A Province represents an administrative subdivision of a [Country](/current/core/reference/typescript-api/entities/country#country). For example, in the
United States, the country would be "United States" and the province would be "California".

```ts title="Signature"
class Province extends Region {
    constructor(input?: DeepPartial<Province>)
    readonly type: RegionType = 'province';
}
```

* Extends: [`Region`](/current/core/reference/typescript-api/entities/region#region)

<div className="members-wrapper">

### type

\<MemberInfo kind="property" type={`RegionType`}   />

</div>
