Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.46 KB

File metadata and controls

37 lines (30 loc) · 1.46 KB

Phrase::RepoSync

Properties

Name Type Description Notes
id String [optional]
name String Optional custom display name for this repo sync. When null or blank, the sync is displayed using the associated project name. [optional]
project ProjectShort [optional]
provider String [optional]
enabled Boolean [optional]
auto_import Boolean [optional]
repo_name String [optional]
pr_branch String Branch used as the source of exports/PRs. May be `null` when the sync is configured to push directly to `base_branch`. [optional]
created_at Time [optional]
last_import_at Time [optional]
last_export_at Time [optional]

Code Sample

require 'Phrase'

instance = Phrase::RepoSync.new(id: null,
                                 name: null,
                                 project: null,
                                 provider: null,
                                 enabled: null,
                                 auto_import: null,
                                 repo_name: null,
                                 pr_branch: null,
                                 created_at: null,
                                 last_import_at: null,
                                 last_export_at: null)