/// <summary>
 /// Sends a POST to '/api/script/{scriptId}/assignments'
 /// </summary>
 /// <param name="scriptId">a path parameter (no description)</param>
 /// <param name="model">a body parameter (no description)</param>
 /// <param name="expand">a query parameter (Allows the specifying of eager-loading of related data which is returned in-line within the results of the request.)</param>
 /// <returns></returns>
 public static RestOperation CreateAssignmentForScript(string scriptId, CreateOrUpdateScriptAssignment model, string expand = null)
 {
     return new RestOperation("POST", "api/script/" + scriptId + "/assignments")
         {
             Content = model,                    QueryParams =
                 {
                      {"$expand", expand},
                 }
         };
 }
 /// <summary>
 /// Sends a PUT to '/api/scriptassignment/{id}'
 /// </summary>
 /// <param name="id">a path parameter (no description)</param>
 /// <param name="model">a body parameter (no description)</param>
 /// <param name="expand">a query parameter (Allows the specifying of eager-loading of related data which is returned in-line within the results of the request.)</param>
 /// <returns></returns>
 public static RestOperation UpdateScriptAssignment(string id, CreateOrUpdateScriptAssignment model, string expand = null)
 {
     return new RestOperation("PUT", "api/scriptassignment/" + id + "")
         {
             Content = model,                    QueryParams =
                 {
                      {"$expand", expand},
                 }
         };
 }
partial         void CopyExtraPropertiesToClone(CreateOrUpdateScriptAssignment clone, bool includeLocalProperties);
 public CreateOrUpdateScriptAssignment Clone(bool includeLocalProperties)
 {
     var c = new CreateOrUpdateScriptAssignment
             {
                 AssignedToId = AssignedToId,
                 Id = Id,
                 PackageId = PackageId,
                 ScriptId = ScriptId,
             };
     CopyExtraPropertiesToClone(c, includeLocalProperties);
     return c;
 }
		/// <summary>
        /// Sends a POST to '/api/scriptassignments'  (asynchronous)
        /// </summary>
        /// <param name="model">a body parameter (no description)</param>
        /// <param name="expand">a query parameter (Allows the specifying of eager-loading of related data which is returned in-line within the results of the request.)</param>
        /// <returns></returns>
        public virtual async Task<ScriptAssignment> CreateScriptAssignmentAsync(CreateOrUpdateScriptAssignment model, string expand = null)
        {
            var operation = Operations.CreateScriptAssignment(model, expand);
			var response = await _client.SendAsync(operation.BuildRequest(_client));
			EnsureSuccess(response);
			var result = await response.Content.ReadAsAsync<ScriptAssignment>();
			return result;
						
		}
        /// <summary>
        /// Sends a PUT to '/api/scriptassignment/{id}'
        /// </summary>
        /// <param name="id">a path parameter (no description)</param>
        /// <param name="model">a body parameter (no description)</param>
        /// <param name="expand">a query parameter (Allows the specifying of eager-loading of related data which is returned in-line within the results of the request.)</param>
        /// <returns></returns>
        public virtual ScriptAssignment UpdateScriptAssignment(string id, CreateOrUpdateScriptAssignment model, string expand = null)
        {
            var operation = Operations.UpdateScriptAssignment(id, model, expand);
			var response = _client.SendAsync(operation.BuildRequest(_client)).Result;
			EnsureSuccess(response);
			var result = response.Content.ReadAsAsync<ScriptAssignment>().Result;
			return result;
			
		}