# Phrase::RepoSyncEvent

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**event_type** | **String** |  | [optional] 
**created_at** | **Time** |  | [optional] 
**status** | **String** |  | [optional] 
**pull_request_url** | **String** | URL of the pull request created on export | [optional] 
**auto_import** | **Boolean** | Whether the import was triggered by the repo push event | [optional] 
**errors** | [**Array<RepoSyncEventErrorsInner>**](RepoSyncEventErrorsInner.md) | List of error messages, in case of failure | [optional] 

## Code Sample

```ruby
require 'Phrase'

instance = Phrase::RepoSyncEvent.new(event_type: null,
                                 created_at: null,
                                 status: null,
                                 pull_request_url: null,
                                 auto_import: null,
                                 errors: null)
```