# Athenian::GoalTemplateCreateRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **account** | **Integer** | Account identifier. That account will own the created goal template. | | | **metric** | [**GoalTemplateMetric**](GoalTemplateMetric.md) | | | | **metric_params** | [**GoalMetricParams**](GoalMetricParams.md) | | [optional] | | **name** | **String** | Name of the template. | | | **repositories** | **Array<String>** | Set of repositories. An empty list raises a bad response 400. Duplicates are automatically ignored. | [optional] | ## Example ```ruby require 'athenian' instance = Athenian::GoalTemplateCreateRequest.new( account: null, metric: null, metric_params: null, name: Untitled Template, repositories: ["github.com/athenianco/athenian-webapp","github.com/athenianco/athenian-api"] ) ```