Skip to content

Commit

Permalink
typos metaifeld => metafield
Browse files Browse the repository at this point in the history
Signed-off-by: James Manning <james.manning@gmail.com>
  • Loading branch information
jamesmanning authored and nozzlegear committed Sep 20, 2024
1 parent 15bbd76 commit f90b4a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ShopifySharp/Services/MetaField/IMetaFieldService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ public interface IMetaFieldService : IShopifyService
/// </summary>
/// <param name="metafield">A new metafield. Id should be set to null.</param>
/// <param name="resourceId">The Id of the resource the metafield will be associated with. This can be variants, products, orders, customers, custom_collections, etc.</param>
/// <param name="resourceType">The resource type the metaifeld will be associated with. This can be variants, products, orders, customers, custom_collections, etc.</param>
/// <param name="resourceType">The resource type the metafield will be associated with. This can be variants, products, orders, customers, custom_collections, etc.</param>
/// <param name="parentResourceId">The Id of the parent resource the metafield will be associated with. This can be blogs, products.</param>
/// <param name="parentResourceType">The resource type the metaifeld will be associated with. This can be articles, variants.</param>
/// <param name="parentResourceType">The resource type the metafield will be associated with. This can be articles, variants.</param>
/// <param name="cancellationToken">Cancellation Token</param>
Task<MetaField> CreateAsync(MetaField metafield, long resourceId, string resourceType, long parentResourceId, string parentResourceType, CancellationToken cancellationToken = default);

Expand All @@ -124,7 +124,7 @@ public interface IMetaFieldService : IShopifyService
/// </summary>
/// <param name="metafield">A new metafield. Id should be set to null.</param>
/// <param name="resourceId">The Id of the resource the metafield will be associated with. This can be variants, products, orders, customers, custom_collections, etc.</param>
/// <param name="resourceType">The resource type the metaifeld will be associated with. This can be variants, products, orders, customers, custom_collections, etc.</param>
/// <param name="resourceType">The resource type the metafield will be associated with. This can be variants, products, orders, customers, custom_collections, etc.</param>
/// <param name="cancellationToken">Cancellation Token</param>
Task<MetaField> CreateAsync(MetaField metafield, long resourceId, string resourceType, CancellationToken cancellationToken = default);

Expand All @@ -142,4 +142,4 @@ public interface IMetaFieldService : IShopifyService
/// <param name="metafieldId">The metafield object's Id.</param>
/// <param name="cancellationToken">Cancellation Token</param>
Task DeleteAsync(long metafieldId, CancellationToken cancellationToken = default);
}
}

0 comments on commit f90b4a7

Please sign in to comment.