/// var options = new ContentstackClientOptions()
/// {
- /// Host = "<API_HOST>",
- /// Authtoken = "<AUTHTOKEN>"
+ /// Host = "",
+ /// Authtoken = ""
/// }
- /// ContentstackClient client = new ContentstackClient(new OptionsWrapper<ContentstackClientOptions>(options));
+ /// ContentstackClient client = new ContentstackClient(new OptionsWrapper(options));
///
///
public ContentstackClient(IOptions
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// User user = client.User();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack Stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack Stack = client.Stack("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// NetworkCredential credentials = new NetworkCredential("<EMAIL>", "<PASSWORD>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// NetworkCredential credentials = new NetworkCredential("", "");
/// ContentstackResponse contentstackResponse = client.Login(credentials);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// NetworkCredential credentials = new NetworkCredential("<EMAIL>", "<PASSWORD>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// NetworkCredential credentials = new NetworkCredential("", "");
/// ContentstackResponse contentstackResponse = await client.LoginAsync(credentials);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentstackResponse contentstackResponse = client.Logout();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentstackResponse contentstackResponse = await client.LogoutAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentstackResponse contentstackResponse = client.GetUser();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentstackResponse contentstackResponse = await client.GetUserAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset().Query().Find();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset().Folder().Create();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset().Folder().Create();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset("<ASSET_UID>").Version().GetAll();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset("").Version().GetAll();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// AssetModel model = new AssetModel("ASSET_NAME", "FILE_PATH", "FILE_CONTENT_TYPE");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset().Create(model);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// AssetModel model = new AssetModel("ASSET_NAME", "FILE_PATH", "FILE_CONTENT_TYPE");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// AssetModel model = new AssetModel("ASSET_NAME", "FILE_PATH", "FILE_CONTENT_TYPE");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset().CreateAsync(model);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// AssetModel model = new AssetModel("ASSET_NAME", "FILE_PATH", "FILE_CONTENT_TYPE");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// AssetModel model = new AssetModel("ASSET_NAME", "FILE_PATH", "FILE_CONTENT_TYPE");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset("<ASSET_UID>").Update(model);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// AssetModel model = new AssetModel("ASSET_NAME", "FILE_PATH", "FILE_CONTENT_TYPE");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset("").Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// AssetModel model = new AssetModel("ASSET_NAME", "FILE_PATH", "FILE_CONTENT_TYPE");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset("<ASSET_UID>").UpdateAsync(model);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// AssetModel model = new AssetModel("ASSET_NAME", "FILE_PATH", "FILE_CONTENT_TYPE");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset("").UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset("<ASSET_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset("<ASSET_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset("<ASSET_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset("<ASSET_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset("<ASSET_UID>").Publish(new PublishUnpublishDetails());
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset("").Publish(new PublishUnpublishDetails());
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset("<ASSET_UID>").PublishAsync(new PublishUnpublishDetails());
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset("").PublishAsync(new PublishUnpublishDetails());
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset("<ASSET_UID>").Unpublish(new PublishUnpublishDetails());
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset("").Unpublish(new PublishUnpublishDetails());
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset("<ASSET_UID>").UnpublishAsync(new PublishUnpublishDetails());
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset("").UnpublishAsync(new PublishUnpublishDetails());
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset("<ASSET_UID>").References();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset("").References();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset("<ASSET_UID>").ReferencesAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset("").ReferencesAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").AuditLog().FindAll();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").AuditLog().FindAll();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").AuditLog().FindAllAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").AuditLog().FindAllAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").AuditLog("<AUDITLOG_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").AuditLog("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").AuditLog("<AUDITLOG_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").AuditLog("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType().Query().Find();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentTypeModel model = new ContentTypeModel(); // Add content type schema or fieldrules
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentTypeModel model = new ContentTypeModel(); // Add content type schema or fieldrules
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentTypeModel model = new ContentTypeModel(); // Add content type schema or fieldrules
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentTypeModel model = new ContentTypeModel(); // Add content type schema or fieldrules
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry().Query().Find();
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry().Query().Find();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry().Version().GetAll();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry().Version().GetAll();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryModel model = new EntryModel(); // Add field values
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryModel model = new EntryModel(); // Add field values
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryModel model = new EntryModel(); // Add field values
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryModel model = new EntryModel(); // Add field values
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// List<string> locales = new List<string>();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").DeleteMultipleLocal(locales);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// List locales = new List();
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").DeleteMultipleLocal(locales);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// List<string> locales = new List<string>();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").DeleteMultipleLocalAsync(locales);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// List locales = new List();
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").DeleteMultipleLocalAsync(locales);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryModel model = new EntryModel(); // Add field values
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Localize(model, "hi-in");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Localize(model, "hi-in");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryModel model = new EntryModel(); // Add field values
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").LocalizeAsync(model, "hi-in");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").LocalizeAsync(model, "hi-in");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Unlocalize("hi-in");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Unlocalize("hi-in");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").UnlocalizeAsync("hi-in");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").UnlocalizeAsync("hi-in");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Locales();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Locales();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").LocalesAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").LocalesAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").References();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").References();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").ReferencesAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").ReferencesAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Publish(new PublishUnpublishDetails());
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Publish(new PublishUnpublishDetails());
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").PublishAsync(new PublishUnpublishDetails(), "en-us");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").PublishAsync(new PublishUnpublishDetails(), "en-us");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Unpublish(new PublishUnpublishDetails());
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Unpublish(new PublishUnpublishDetails());
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").UnpublishAsync(new PublishUnpublishDetails(), "en-us");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").UnpublishAsync(new PublishUnpublishDetails(), "en-us");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Import("PATH/TO/FILE");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Import("PATH/TO/FILE");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").ImportAsync("PATH/TO/FILE");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").ImportAsync("PATH/TO/FILE");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").Export("PATH/TO/FILE");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").Export("PATH/TO/FILE");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryWorkflowStage model = new EntryWorkflowStage();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").SetWorkflow(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").SetWorkflow(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryWorkflowStage model = new EntryWorkflowStage();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").SetWorkflowAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").SetWorkflowAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryPublishAction model = new EntryPublishAction();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").PublishRequest(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").ContentType("").Entry("").PublishRequest(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EntryPublishAction model = new EntryPublishAction();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ContentType("<CONTENT_TYPE_UID>").Entry("<ENTRY_UID>").PublishRequestAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ContentType("").Entry("").PublishRequestAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Environment().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Environment().Query().Find();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EnvironmentModel model = new EnvironmentModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Environment().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Environment().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EnvironmentModel model = new EnvironmentModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Environment().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Environment().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EnvironmentModel model = new EnvironmentModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Environment("<ENVIRONMENT_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Environment("").Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// EnvironmentModel model = new EnvironmentModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Environment("<ENVIRONMENT_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Environment("").UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Environment("<ENVIRONMENT_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Environment("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Environment("<ENVIRONMENT_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Environment("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Environment("<ENVIRONMENT_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Environment("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Environment("<ENVIRONMENT_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Environment("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Extension().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Extension().Query().Find();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// CustomField model = new CustomField("FILE_PATH", "FILE_CONTENT_TYPE", "TITLE", "DATA_TYPE");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Extension().Upload(model);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// CustomField model = new CustomField("FILE_PATH", "FILE_CONTENT_TYPE", "TITLE", "DATA_TYPE");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Extension().Upload(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// CustomFieldModel model = new CustomFieldModel("FILE_PATH", "FILE_CONTENT_TYPE", "TITLE", "DATA_TYPE");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Extension().UploadAsync(model);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// CustomFieldModel model = new CustomFieldModel("FILE_PATH", "FILE_CONTENT_TYPE", "TITLE", "DATA_TYPE");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Extension().UploadAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ExtensionModel model = new ExtensionModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Extension().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Extension().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ExtensionModel model = new ExtensionModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Extension().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Extension().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ExtensionModel model = new ExtensionModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Extension("<EXTENSION_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Extension("").Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ExtensionModel model = new ExtensionModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Extension("<EXTENSION_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Extension("").UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Extension("<EXTENSION_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Extension("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Extension("<EXTENSION_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Extension("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Extension("<EXTENSION_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Extension("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Extension("<EXTENSION_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Extension("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset().Folder().Create("<FOLDER_NAME>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset().Folder().Create("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset().Folder().CreateAsync("<FOLDER_NAME>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset().Folder().CreateAsync("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset().Folder("<ASSET_UID>").Update("<FOLDER_NAME>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset().Folder("").Update("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset().Folder("<ASSET_UID>").UpdateAsync("<FOLDER_NAME>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset().Folder("").UpdateAsync("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset().Folder("<ASSET_UID>").Fetch(model);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset().Folder("").Fetch(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset().Folder("<ASSET_UID>").FetchAsync(model);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset().Folder("").FetchAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset().Folder("<ASSET_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Asset().Folder("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset().Folder("<ASSET_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Asset().Folder("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").GlobalField().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").GlobalField().Query().Find();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentModeling model = new ContentModeling() // Add global field schema or field rules
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").GlobalField().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").GlobalField().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentModeling model = new ContentModeling() // Add global field schema or field rules
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").GlobalField().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").GlobalField().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentModeling model = new ContentModeling() // Add global field schema or field rules
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").GlobalField("<GLOBAL_FIELD_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").GlobalField("").Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentModeling model = new ContentModeling() // Add global field schema or field rules
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").GlobalField("<GLOBAL_FIELD_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").GlobalField("").UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").GlobalField("<GLOBAL_FIELD_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").GlobalField("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").GlobalField("<GLOBAL_FIELD_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").GlobalField("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").GlobalField("<GLOBAL_FIELD_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").GlobalField("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").GlobalField("<GLOBAL_FIELD_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").GlobalField("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Label().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Label().Query().Find();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// LabelMode model = new LabelMode();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Label().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Label().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// LabelMode model = new LabelMode();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Label().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Label().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// LabelMode model = new LabelMode();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Label("<LABEL_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Label("").Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// LabelMode model = new LabelMode();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Label("<LABEL_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Label("").UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Label("<LABEL_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Label("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Label("<LABEL_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Label("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Label("<LABEL_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Label("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Label("<LABEL_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Label("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Locale().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Locale().Query().Find();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// LocaleModel model = new LocaleModel(); // Add field values
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Locale().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Locale().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// LocaleModel model = new LocaleModel(); // Add field values
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Locale().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Locale().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// LocaleModel model = new LocaleModel(); // Add field values
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Locale().Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Locale().Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// LocaleModel model = new LocaleModel(); // Add field values
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Locale().UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Locale().UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Locale("<LOCALE_CODE>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Locale("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Locale("<LOCALE_CODE>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Locale("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Locale("<LOCALE_CODE>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Locale("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Locale("<LOCALE_CODE>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Locale("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// Organization organization = client.Organization();
/// ContentstackResponse contentstackResponse = organization.GetOrganizations();
///
@@ -49,7 +49,7 @@ public ContentstackResponse GetOrganizations(ParameterCollection parameters = nu
/// URI query parameters
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// Organization organization = client.Organization();
/// ContentstackResponse contentstackResponse = await organization.GetOrganizationsAsync();
///
@@ -70,8 +70,8 @@ public Task
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
/// ContentstackResponse contentstackResponse = organization.Roles();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
/// ContentstackResponse contentstackResponse = await organization.RolesAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
/// UserInvitation invitation = new UserInvitation()
/// {
- /// Email = "<EMAIL>",
- /// Roles = new System.Collections.Generic.List<string>() { "<ROLE_UID>" }
+ /// Email = "",
+ /// Roles = new System.Collections.Generic.List() { "" }
/// };
- /// ContentstackResponse contentstackResponse = organization.AddUser(new System.Collections.Generic.List<UserInvitation>()
+ /// ContentstackResponse contentstackResponse = organization.AddUser(new System.Collections.Generic.List()
/// {
/// invitation
/// },
- /// new Dictionary<string, List<UserInvitation>> ()
+ /// new Dictionary> ()
/// {
- /// "<STACK_UID>"= invitation
+ /// ""= invitation
/// });
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
/// UserInvitation invitation = new UserInvitation()
/// {
- /// Email = "<EMAIL>",
- /// Roles = new System.Collections.Generic.List<string>() { "<ROLE_UID>" }
+ /// Email = "",
+ /// Roles = new System.Collections.Generic.List() { "" }
/// };
- /// ContentstackResponse contentstackResponse = await organization.AddUserAsync(new System.Collections.Generic.List<UserInvitation>()
+ /// ContentstackResponse contentstackResponse = await organization.AddUserAsync(new System.Collections.Generic.List()
/// {
/// invitation
/// },
- /// new <string, List<UserInvitation>> ()
+ /// new > ()
/// {
- /// "<STACK_UID>"= invitation
+ /// ""= invitation
/// }
/// );
///
@@ -203,9 +203,9 @@ public Task
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
- /// ContentstackResponse contentstackResponse = organization.RemoveUser(new List() { "<EMAIL>" });
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
+ /// ContentstackResponse contentstackResponse = organization.RemoveUser(new List() { "" });
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
- /// ContentstackResponse contentstackResponse = await organization.RemoveUserAsync(new List() { "<EMAIL>" });
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
+ /// ContentstackResponse contentstackResponse = await organization.RemoveUserAsync(new List() { "" });
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
- /// ContentstackResponse contentstackResponse = organization.ResendInvitation("<SHARE_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
+ /// ContentstackResponse contentstackResponse = organization.ResendInvitation("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
- /// ContentstackResponse contentstackResponse = await organization.ResendInvitationAsync("<SHARE_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
+ /// ContentstackResponse contentstackResponse = await organization.ResendInvitationAsync("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
/// ContentstackResponse contentstackResponse = organization.GetInvitations();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
/// ContentstackResponse contentstackResponse = await organization.GetInvitationsAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
- /// ContentstackResponse contentstackResponse = organization.TransferOwnership("<EMAIL>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
+ /// ContentstackResponse contentstackResponse = organization.TransferOwnership("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
- /// ContentstackResponse contentstackResponse = await organization.TransferOwnershipAsync("<EMAIL>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
+ /// ContentstackResponse contentstackResponse = await organization.TransferOwnershipAsync("");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
/// ContentstackResponse contentstackResponse = organization.GetStacks();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Organization organization = client.Organization("<ORG_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Organization organization = client.Organization("");
/// ContentstackResponse contentstackResponse = await organization.GetStacksAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").PublishQueue().FindAll();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").PublishQueue().FindAll();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").PublishQueue().FindAllAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").PublishQueue().FindAllAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").PublishQueue("<PUBLISH_QUEUE_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").PublishQueue("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").PublishQueue("<PUBLISH_QUEUE_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").PublishQueue("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").PublishQueue("<PUBLISH_QUEUE_UID>").Cancel();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").PublishQueue("").Cancel();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").PublishQueue("<PUBLISH_QUEUE_UID>").CancelAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").PublishQueue("").CancelAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow().PublishRule().FindAll();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow().PublishRule().FindAll();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow().PublishRule().FindAllAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow().PublishRule().FindAllAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// PublishRuleModel model = new PublishRuleModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow().PublishRule().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow().PublishRule().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// PublishRuleModel model = new PublishRuleModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow().PublishRule().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow().PublishRule().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// PublishRuleModel model = new PublishRuleModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow().PublishRule("<PUBLISH_RULE_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow().PublishRule("").Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// PublishRuleModel model = new PublishRuleModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow().PublishRule("<PUBLISH_RULE_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow().PublishRule("").UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow().PublishRule("<PUBLISH_RULE_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow().PublishRule("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow().PublishRule("<PUBLISH_RULE_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow().PublishRule("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow().PublishRule("<PUBLISH_RULE_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow().PublishRule("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow().PublishRule("<PUBLISH_RULE_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow().PublishRule("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Release().Query().Find();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ReleaseModel model = new ReleaseModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Release().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ReleaseModel model = new ReleaseModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Release().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Release().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ReleaseModel model = new ReleaseModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release("<RELEASE_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Release("").Update(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ReleaseModel model = new ReleaseModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Release("<RELEASE_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Release("").UpdateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release("<RELEASE_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Release("").Fetch();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Release("<RELEASE_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Release("").FetchAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release("<RELEASE_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Release("").Delete();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Release("<RELEASE_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Release("").DeleteAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release("<RELEASE_UID>").Item().GetAll();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Release("").Item().GetAll();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// DeployModel model = new DeployModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Deploy(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Relase("").Deploy(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// DeployModel model = new DeployModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Relase("<RELEASE_UID>").DeployAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Relase("").DeployAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Clone("<NAME>", "<DESCRIPTION>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Relase("").Clone("", "");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Relase("<RELEASE_UID>").CloneAsync("<NAME>", "<DESCRIPTION>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Relase("").CloneAsync("", "");
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack().Relase("<RELEASE_UID>").Item().GetAll();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack().Relase("").Item().GetAll();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack().Relase("<RELEASE_UID>").Item().GetAllAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack().Relase("").Item().GetAllAsync();
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ReleaseItemModel model = new ReleaseItemModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Item().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Relase("").Item().Create(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ReleaseItemModel model = new ReleaseItemModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Item().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Relase("").Item().CreateAsync(model);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ReleaseItemModel model = new ReleaseItemModel();
- /// List<ReleaseItemModel> models = new List<ReleaseItemModel>()
+ /// List models = new List()
/// {
/// model,
/// };
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Item().CreateMultiple(models);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Relase("").Item().CreateMultiple(models);
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Item().CreateMultipleAsync(models);
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Relase("").Item().CreateMultipleAsync(models);
/// ReleaseItemModel model = new ReleaseItemModel();
- /// List<ReleaseItemModel> models = new List<ReleaseItemModel>()
+ /// List models = new List()
/// {
/// model,
/// };
@@ -164,14 +164,14 @@ public Task CreateMultipleAsync(List mod
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// List<string> items = new List<string>(){
- /// "<$all>"
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// List items = new List(){
+ /// "<$all>"
/// }
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release("<RELEASE_UID>").Item().UpdateReleaseItem(items);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Release("").Item().UpdateReleaseItem(items);
///
///
- /// Release items to update or "$all" for updating all release items
+ /// Release items to update or "$all" for updating all release items
/// The .
public ContentstackResponse UpdateReleaseItem(List items)
{
@@ -186,14 +186,14 @@ public ContentstackResponse UpdateReleaseItem(List items)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// List<string> items = new List<string>(){
- /// "<$all>"
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// List items = new List(){
+ /// "<$all>"
/// }
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Release("<RELEASE_UID>").Item().UpdateReleaseItemAsync(items);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Release("").Item().UpdateReleaseItemAsync(items);
///
///
- /// Release items to update or "$all" for updating all release items
+ /// Release items to update or "$all" for updating all release items
/// The Task.
public Task UpdateReleaseItemAsync(List items)
{
@@ -208,13 +208,13 @@ public Task UpdateReleaseItemAsync(List items)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ReleaseItemModel model = new ReleaseItemModel();
- /// List<ReleaseItemModel> models = new List<ReleaseItemModel>()
+ /// List models = new List()
/// {
/// model,
/// };
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Item("<RELEASE_ITEM_UID>").Delete(models);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Relase("").Item("").Delete(models);
///
///
/// The .
@@ -232,13 +232,13 @@ public ContentstackResponse Delete(List models, ParameterColle
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ReleaseItemModel model = new ReleaseItemModel();
- /// List<ReleaseItemModel> models = new List<ReleaseItemModel>()
+ /// List models = new List()
/// {
/// model,
/// };
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Item("<RELEASE_ITEM_UID>").DeleteAsync(models);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Relase("").Item("").DeleteAsync(models);
///
///
/// The Task.
diff --git a/Contentstack.Management.Core/Models/Role.cs b/Contentstack.Management.Core/Models/Role.cs
index 91abdb8..10de74a 100644
--- a/Contentstack.Management.Core/Models/Role.cs
+++ b/Contentstack.Management.Core/Models/Role.cs
@@ -16,8 +16,8 @@ internal Role(Stack stack, string uid = null)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Role().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Role().Query().Find();
///
///
/// The
@@ -32,9 +32,9 @@ public Query Query()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// RoleModel model = new RoleModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Role().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Role().Create(model);
///
///
/// Role Model for creating Role.
@@ -49,9 +49,9 @@ public override ContentstackResponse Create(RoleModel model, ParameterCollection
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// RoleModel model = new RoleModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Role().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Role().CreateAsync(model);
///
///
/// Role Model for creating Role.
@@ -66,9 +66,9 @@ public override Task CreateAsync(RoleModel model, Paramete
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// RoleModel model = new RoleModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Role("<ROLE_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Role("").Update(model);
///
///
/// Role Model for creating Role.
@@ -83,9 +83,9 @@ public override ContentstackResponse Update(RoleModel model, ParameterCollection
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// RoleModel model = new RoleModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Role("<ROLE_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Role("").UpdateAsync(model);
///
///
/// Role Model for creating Role.
@@ -100,8 +100,8 @@ public override Task UpdateAsync(RoleModel model, Paramete
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Role("<ROLE_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Role("").Fetch();
///
///
/// The .
@@ -115,8 +115,8 @@ public override ContentstackResponse Fetch(ParameterCollection collection = null
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Role("<ROLE_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Role("").FetchAsync();
///
///
/// The Task.
@@ -130,8 +130,8 @@ public override Task FetchAsync(ParameterCollection collec
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Role("<ROLE_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Role("").Delete();
///
///
/// The .
@@ -145,8 +145,8 @@ public override ContentstackResponse Delete(ParameterCollection collection = nul
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Role("<ROLE_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Role("").DeleteAsync();
///
///
/// The Task.
diff --git a/Contentstack.Management.Core/Models/Stack.cs b/Contentstack.Management.Core/Models/Stack.cs
index dc908d5..bd461f4 100644
--- a/Contentstack.Management.Core/Models/Stack.cs
+++ b/Contentstack.Management.Core/Models/Stack.cs
@@ -33,7 +33,7 @@ public Stack(ContentstackClient contentstackClient, string apiKey = null, string
/// URI query parameters
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// Stack stack = client.Stack();
/// ContentstackResponse contentstackResponse = stack.GetAll();
///
@@ -55,7 +55,7 @@ public ContentstackResponse GetAll(ParameterCollection parameters = null)
/// URI query parameters
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// Stack stack = client.Stack();
/// ContentstackResponse contentstackResponse = await stack.GetAllAsync();
///
@@ -77,8 +77,8 @@ public Task GetAllAsync(ParameterCollection parameters = n
/// URI query parameters
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// ContentstackResponse contentstackResponse = stack.Fetch();
///
///
@@ -98,8 +98,8 @@ public ContentstackResponse Fetch(ParameterCollection parameters = null)
/// URI query parameters
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// ContentstackResponse contentstackResponse = await stack.FetchAsync();
///
///
@@ -120,9 +120,9 @@ public Task FetchAsync(ParameterCollection parameters = nu
/// The email id of user for transfer.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.TransferOwnership("<EMAIL>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.TransferOwnership("");
///
///
/// The
@@ -142,9 +142,9 @@ public ContentstackResponse TransferOwnership(string email)
/// The email id of user for transfer.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = await stack.TransferOwnershipAsync("<EMAIL>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = await stack.TransferOwnershipAsync("");
///
///
/// The Task
@@ -167,9 +167,9 @@ public Task TransferOwnershipAsync(string email)
/// The description for the Stack.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// Stack stack = client.Stack();
- /// ContentstackResponse contentstackResponse = stack.Create("<STACK_NAME>", "<LOCALE>", "<ORG_UID>", "<DESCRIPTION>");
+ /// ContentstackResponse contentstackResponse = stack.Create("", "", "", "");
///
///
/// The
@@ -195,9 +195,9 @@ public ContentstackResponse Create(string name, string masterLocale, string orga
/// The description for the Stack.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// Stack stack = client.Stack();
- /// ContentstackResponse contentstackResponse = await stack.CreateAsync("<STACK_NAME>", "<LOCALE>", "<ORG_UID>", "<DESCRIPTION>");
+ /// ContentstackResponse contentstackResponse = await stack.CreateAsync("", "", "", "");
///
///
/// The Task
@@ -223,9 +223,9 @@ public Task CreateAsync(string name, string masterLocale,
/// The description for the Stack.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Update("<STACK_NAME>", "<DESCRIPTION>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Update("", "");
///
///
/// The
@@ -249,9 +249,9 @@ public ContentstackResponse Update(string name, string description = null)
/// The description for the Stack.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = await stack.UpdateAsync("<STACK_NAME>", "<DESCRIPTION>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = await stack.UpdateAsync("", "");
///
///
/// The Task
@@ -272,14 +272,14 @@ public Task UpdateAsync(string name, string description =
/// List of users uid and roles to assign users.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// UserInvitation invitation = new UserInvitation()
/// {
- /// Uid = "<USER_ID>",
- /// Roles = new System.Collections.Generic.List<string>() { "<ROLE_UID>" }
+ /// Uid = "",
+ /// Roles = new System.Collections.Generic.List() { "" }
/// };
- /// ContentstackResponse contentstackResponse = stack.UpdateUserRole(new List<UserInvitation>() {
+ /// ContentstackResponse contentstackResponse = stack.UpdateUserRole(new List() {
/// invitation
/// });
///
@@ -301,14 +301,14 @@ public ContentstackResponse UpdateUserRole(List usersRole)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// UserInvitation invitation = new UserInvitation()
/// {
- /// Uid = "<USER_ID>",
- /// Roles = new System.Collections.Generic.List<string>() { "<ROLE_UID>" }
+ /// Uid = "",
+ /// Roles = new System.Collections.Generic.List() { "" }
/// };
- /// ContentstackResponse contentstackResponse = await stack.UpdateUserRoleAsync(new List<UserInvitation>() {
+ /// ContentstackResponse contentstackResponse = await stack.UpdateUserRoleAsync(new List() {
/// invitation
/// });
///
@@ -329,8 +329,8 @@ public Task UpdateUserRoleAsync(List users
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// ContentstackResponse contentstackResponse = stack.Settings();
///
///
@@ -350,8 +350,8 @@ public ContentstackResponse Settings()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// ContentstackResponse contentstackResponse = await stack.SettingsAsync();
///
///
@@ -371,8 +371,8 @@ public Task SettingsAsync()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// ContentstackResponse contentstackResponse = stack.Settings();
///
///
@@ -397,8 +397,8 @@ public ContentstackResponse ResetSettings()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// ContentstackResponse contentstackResponse = await stack.SettingsAsync();
///
///
@@ -423,9 +423,9 @@ public Task ResetSettingsAsync()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Settings("<STACK_SETTINGS>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Settings("");
///
///
/// The
@@ -448,9 +448,9 @@ public ContentstackResponse AddSettings(StackSettings settings)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = await stack.SettingsAsync("<STACK_SETTINGS>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = await stack.SettingsAsync("");
///
///
/// The Task
@@ -472,12 +472,12 @@ public Task AddSettingsAsync(StackSettings settings)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// UserInvitation invitation = new UserInvitation()
/// {
- /// Email = "<EMAIL>",
- /// Roles = new System.Collections.Generic.List<string>() { "<ROLE_UID>" }
+ /// Email = "",
+ /// Roles = new System.Collections.Generic.List() { "" }
/// };
/// ContentstackResponse contentstackResponse = stack.Share(invitation);
///
@@ -503,12 +503,12 @@ public ContentstackResponse Share(List invitations)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
/// UserInvitation invitation = new UserInvitation()
/// {
- /// Email = "<EMAIL>",
- /// Roles = new System.Collections.Generic.List<string>() { "<ROLE_UID>" }
+ /// Email = "",
+ /// Roles = new System.Collections.Generic.List() { "" }
/// };
/// ContentstackResponse contentstackResponse = await stack.ShareAsync(invitation);
///
@@ -534,9 +534,9 @@ public Task ShareAsync(List invitations)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.UnShare(("<EMAIL>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.UnShare(("");
///
///
/// The
@@ -561,9 +561,9 @@ public ContentstackResponse UnShare(string email)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = await stack.UnShareAsync("<EMAIL>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = await stack.UnShareAsync("");
///
///
/// The Task
@@ -587,9 +587,9 @@ public Task UnShareAsync(string email)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Locale("<LOCALE_CODE>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Locale("").Fetch();
///
///
/// Locale code fot language
@@ -609,9 +609,9 @@ public Locale Locale(string code = null)
/// Optional content type uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.ContentType("<CONTENT_TYPE_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.ContentType("").Fetch();
///
///
/// The
@@ -628,9 +628,9 @@ public ContentType ContentType(string uid = null)
/// Optional asset uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Asset("<ASSET_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Asset("").Fetch();
///
///
/// The
@@ -649,9 +649,9 @@ public Asset Asset(string uid = null)
/// Optional global field uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.GlobalField("<GLOBAL_FIELD_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.GlobalField("").Fetch();
///
///
/// The
@@ -669,9 +669,9 @@ public GlobalField GlobalField(string uid = null)
/// Optional, extension uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Extension("<EXTENSION_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Extension("").Fetch();
///
///
/// The
@@ -689,9 +689,9 @@ public Extension Extension(string uid = null)
/// Optional, label uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Label("<LABEL_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Label("").Fetch();
///
///
/// The
@@ -709,9 +709,9 @@ public Label Label(string uid = null)
/// Optional, environment uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Environment("<ENVIRONMENT_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Environment("").Fetch();
///
///
/// The
@@ -729,9 +729,9 @@ public Environment Environment(string uid = null)
/// Optional, delivery token uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.DeliveryToken("<TOKEN_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.DeliveryToken("").Fetch();
///
///
/// The
@@ -749,9 +749,9 @@ public DeliveryToken DeliveryToken(string uid = null)
/// Optional, management token uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.ManagementTokens("<TOKEN_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.ManagementTokens("").Fetch();
///
///
/// The
@@ -769,9 +769,9 @@ public ManagementToken ManagementTokens(string uid = null)
/// Optional, role uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Role("<ROLE_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Role("").Fetch();
///
///
/// The
@@ -789,9 +789,9 @@ public Role Role(string uid = null)
/// Optional, release uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Release("<RELEASE_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Release("").Fetch();
///
///
/// The
@@ -810,9 +810,9 @@ public Release Release(string uid = null)
/// Optional, workflow uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Workflow("<WORKFLOW_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Workflow("").Fetch();
///
///
/// The
@@ -831,9 +831,9 @@ public Workflow Workflow(string uid = null)
/// Optional, publish queue uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.PublishQueue("<PUBLISH_QUEUE_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.PublishQueue("").Fetch();
///
///
/// The
@@ -850,9 +850,9 @@ public PublishQueue PublishQueue(string uid = null)
/// Optional, webhook uid uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.Webhook("<WEBHOOK_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.Webhook("").Fetch();
///
///
/// The
@@ -870,9 +870,9 @@ public Webhook Webhook(string uid = null)
/// Optional, audit log uid.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// Stack stack = client.Stack("<API_KEY>");
- /// ContentstackResponse contentstackResponse = stack.AuditLog("<AUDIT_LOG_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// Stack stack = client.Stack("");
+ /// ContentstackResponse contentstackResponse = stack.AuditLog("").Fetch();
///
///
/// The
diff --git a/Contentstack.Management.Core/Models/Token/DeliveryToken.cs b/Contentstack.Management.Core/Models/Token/DeliveryToken.cs
index cd6ab1d..75396ac 100644
--- a/Contentstack.Management.Core/Models/Token/DeliveryToken.cs
+++ b/Contentstack.Management.Core/Models/Token/DeliveryToken.cs
@@ -1,5 +1,7 @@
-using System.Threading.Tasks;
+using System;
+using System.Threading.Tasks;
using Contentstack.Management.Core.Queryable;
+using Newtonsoft.Json.Linq;
namespace Contentstack.Management.Core.Models.Token
{
@@ -8,7 +10,7 @@ public class DeliveryToken : BaseModel
internal DeliveryToken(Stack stack, string uid = null)
: base(stack, "token", uid)
{
- resourcePath = uid == null ? "/delivery_tokens" : $"/delivery_tokens/{uid}";
+ resourcePath = uid == null ? "stacks/delivery_tokens" : $"stacks/delivery_tokens/{uid}";
}
///
@@ -16,8 +18,8 @@ internal DeliveryToken(Stack stack, string uid = null)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").DeliveryToken().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").DeliveryToken().Query().Find();
///
///
/// The
@@ -32,9 +34,9 @@ public Query Query()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// DeliveryTokenModel model = new DeliveryTokenModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").DeliveryToken().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").DeliveryToken().Create(model);
///
///
/// DeliveryToken Model for creating DeliveryToken.
@@ -49,9 +51,9 @@ public override ContentstackResponse Create(DeliveryTokenModel model, ParameterC
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// DeliveryTokenModel model = new DeliveryTokenModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").DeliveryToken().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").DeliveryToken().CreateAsync(model);
///
///
/// DeliveryToken Model for creating DeliveryToken.
@@ -66,9 +68,9 @@ public override Task CreateAsync(DeliveryTokenModel model,
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// DeliveryTokenModel model = new DeliveryTokenModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").DeliveryToken("<DELIVERY_TOKEN_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").DeliveryToken("").Update(model);
///
///
/// DeliveryToken Model for creating DeliveryToken.
@@ -83,9 +85,9 @@ public override ContentstackResponse Update(DeliveryTokenModel model, ParameterC
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// DeliveryTokenModel model = new DeliveryTokenModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").DeliveryToken("<DELIVERY_TOKEN_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").DeliveryToken("").UpdateAsync(model);
///
///
/// DeliveryToken Model for creating DeliveryToken.
@@ -100,8 +102,8 @@ public override Task UpdateAsync(DeliveryTokenModel model,
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").DeliveryToken("<DELIVERY_TOKEN_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").DeliveryToken("").Fetch();
///
///
/// The .
@@ -115,8 +117,8 @@ public override ContentstackResponse Fetch(ParameterCollection collection = null
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").DeliveryToken("<DELIVERY_TOKEN_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").DeliveryToken("").FetchAsync();
///
///
/// The Task.
@@ -130,8 +132,8 @@ public override Task FetchAsync(ParameterCollection collec
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").DeliveryToken("<DELIVERY_TOKEN_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").DeliveryToken("").Delete();
///
///
/// The .
@@ -145,8 +147,8 @@ public override ContentstackResponse Delete(ParameterCollection collection = nul
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").DeliveryToken("<DELIVERY_TOKEN_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").DeliveryToken("").DeleteAsync();
///
///
/// The Task.
diff --git a/Contentstack.Management.Core/Models/Token/ManagementToken.cs b/Contentstack.Management.Core/Models/Token/ManagementToken.cs
index eaee8fd..f05a9b6 100644
--- a/Contentstack.Management.Core/Models/Token/ManagementToken.cs
+++ b/Contentstack.Management.Core/Models/Token/ManagementToken.cs
@@ -16,8 +16,8 @@ internal ManagementToken(Stack stack, string uid = null)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ManagementToken().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ManagementToken().Query().Find();
///
///
/// The
@@ -33,9 +33,9 @@ public Query Query()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ManagementTokenModel model = new ManagementTokenModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ManagementToken().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").ManagementToken().Create(model);
///
///
/// ManagementToken Model for creating ManagementToken.
@@ -51,9 +51,9 @@ public override ContentstackResponse Create(ManagementTokenModel model, Paramete
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ManagementTokenModel model = new ManagementTokenModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ManagementToken().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ManagementToken().CreateAsync(model);
///
///
/// ManagementToken Model for creating ManagementToken.
@@ -71,9 +71,9 @@ public override Task CreateAsync(ManagementTokenModel mode
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ManagementTokenModel model = new ManagementTokenModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ManagementToken("<MANAGEMENT_TOKEN_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").ManagementToken("").Update(model);
///
///
/// ManagementToken Model for creating ManagementToken.
@@ -91,9 +91,9 @@ public override ContentstackResponse Update(ManagementTokenModel model, Paramete
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ManagementTokenModel model = new ManagementTokenModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ManagementToken("<MANAGEMENT_TOKEN_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ManagementToken("").UpdateAsync(model);
///
///
/// ManagementToken Model for creating ManagementToken.
@@ -108,8 +108,8 @@ public override Task UpdateAsync(ManagementTokenModel mode
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ManagementToken("<MANAGEMENT_TOKEN_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ManagementToken("").Fetch();
///
///
/// The .
@@ -123,8 +123,8 @@ public override ContentstackResponse Fetch(ParameterCollection collection = null
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ManagementToken("<MANAGEMENT_TOKEN_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ManagementToken("").FetchAsync();
///
///
/// The Task.
@@ -138,8 +138,8 @@ public override Task FetchAsync(ParameterCollection collec
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").ManagementToken("<MANAGEMENT_TOKEN_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").ManagementToken("").Delete();
///
///
/// The .
@@ -153,8 +153,8 @@ public override ContentstackResponse Delete(ParameterCollection collection = nul
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").ManagementToken("<MANAGEMENT_TOKEN_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").ManagementToken("").DeleteAsync();
///
///
/// The Task.
diff --git a/Contentstack.Management.Core/Models/User.cs b/Contentstack.Management.Core/Models/User.cs
index 6a31cf3..111ac29 100644
--- a/Contentstack.Management.Core/Models/User.cs
+++ b/Contentstack.Management.Core/Models/User.cs
@@ -26,9 +26,9 @@ internal User(ContentstackClient contentstackClient)
/// The email for the account that user has forgotten the login password
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// User user = client.User();
- /// ContentstackResponse contentstackResponse = client.ForgotPassword("<EMAIL>");
+ /// ContentstackResponse contentstackResponse = client.ForgotPassword("");
///
///
/// The .
@@ -47,9 +47,9 @@ public ContentstackResponse ForgotPassword(string email)
/// The email for the account that user has forgotten the login password
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// User user = client.User();
- /// ContentstackResponse contentstackResponse = await client.ForgotPasswordAsync("<EMAIL>");
+ /// ContentstackResponse contentstackResponse = await client.ForgotPasswordAsync("");
///
///
/// The Task.
@@ -70,9 +70,9 @@ public Task ForgotPasswordAsync(string email)
/// The confirm password for the account.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// User user = client.User();
- /// ContentstackResponse contentstackResponse = client.ResetPassword("<REST_TOKEN>", "<PASSWORD>", "<CONFIRM_PASSWORD>");
+ /// ContentstackResponse contentstackResponse = client.ResetPassword("", "", "");
///
///
/// The
@@ -93,9 +93,9 @@ public ContentstackResponse ResetPassword(string resetToken, string password, st
/// The confirm password for the account.
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// User user = client.User();
- /// ContentstackResponse contentstackResponse = await client.ResetPasswordAsync("<REST_TOKEN>", "<PASSWORD>", "<CONFIRM_PASSWORD>");
+ /// ContentstackResponse contentstackResponse = await client.ResetPasswordAsync("", "", "");
///
///
/// The Task.
diff --git a/Contentstack.Management.Core/Models/Webhook.cs b/Contentstack.Management.Core/Models/Webhook.cs
index 7f80233..6c579ae 100644
--- a/Contentstack.Management.Core/Models/Webhook.cs
+++ b/Contentstack.Management.Core/Models/Webhook.cs
@@ -17,8 +17,8 @@ internal Webhook(Stack stack, string uid = null)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Webhook().Query().Find();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Webhook().Query().Find();
///
///
/// The
@@ -33,9 +33,9 @@ public Query Query()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// WebhookModel model = new WebhookModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Webhook().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Webhook().Create(model);
///
///
/// Webhook Model for creating Webhook.
@@ -50,9 +50,9 @@ public override ContentstackResponse Create(WebhookModel model, ParameterCollect
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// WebhookModel model = new WebhookModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Webhook().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Webhook().CreateAsync(model);
///
///
/// Webhook Model for creating Webhook.
@@ -67,9 +67,9 @@ public override Task CreateAsync(WebhookModel model, Param
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// WebhookModel model = new WebhookModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Webhook("").Update(model);
///
///
/// Webhook Model for creating Webhook.
@@ -84,9 +84,9 @@ public override ContentstackResponse Update(WebhookModel model, ParameterCollect
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// WebhookModel model = new WebhookModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Webhook("").UpdateAsync(model);
///
///
/// Webhook Model for creating Webhook.
@@ -101,8 +101,8 @@ public override Task UpdateAsync(WebhookModel model, Param
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Webhook("").Fetch();
///
///
/// The .
@@ -116,8 +116,8 @@ public override ContentstackResponse Fetch(ParameterCollection collection = null
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Webhook("").FetchAsync();
///
///
/// The Task.
@@ -131,8 +131,8 @@ public override Task FetchAsync(ParameterCollection collec
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Webhook("").Delete();
///
///
/// The .
@@ -146,8 +146,8 @@ public override ContentstackResponse Delete(ParameterCollection collection = nul
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Webhook("").DeleteAsync();
///
///
/// The Task.
@@ -161,8 +161,8 @@ public override Task DeleteAsync(ParameterCollection colle
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").Executions();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Webhook("").Executions();
///
///
/// The .
@@ -180,8 +180,8 @@ public ContentstackResponse Executions(ParameterCollection collection = null)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").ExecutionsAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Webhook("").ExecutionsAsync();
///
///
/// The Task.
@@ -200,8 +200,8 @@ public Task ExecutionsAsync(ParameterCollection collection
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").Retry("<EXECUTION_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Webhook("").Retry("");
///
///
/// execution UID that you receive when you execute the 'Get executions of webhooks' call.
@@ -220,8 +220,8 @@ public ContentstackResponse Retry(string executionUid)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").RetryAsync("<EXECUTION_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Webhook("").RetryAsync("");
///
///
/// execution UID that you receive when you execute the 'Get executions of webhooks' call.
@@ -241,8 +241,8 @@ public Task RetryAsync(string executionUid)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").Logs("<EXECUTION_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Webhook("").Logs("");
///
///
/// execution UID that you receive when you execute the 'Get executions of webhooks' call.
@@ -261,8 +261,8 @@ public ContentstackResponse Logs(string executionUid)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Webhook("<WEBHOOK_UID>").LogsAsync("<EXECUTION_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Webhook("").LogsAsync("");
///
///
/// execution UID that you receive when you execute the 'Get executions of webhooks' call.
diff --git a/Contentstack.Management.Core/Models/Workflow.cs b/Contentstack.Management.Core/Models/Workflow.cs
index daf5ff5..c9cd182 100644
--- a/Contentstack.Management.Core/Models/Workflow.cs
+++ b/Contentstack.Management.Core/Models/Workflow.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Threading.Tasks;
using Contentstack.Management.Core.Queryable;
using Contentstack.Management.Core.Services.Models;
@@ -19,8 +19,8 @@ internal Workflow(Stack stack, string uid)
/// Query parameter
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow().FindAll();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow().FindAll();
///
///
/// The .
@@ -39,8 +39,8 @@ public virtual ContentstackResponse FindAll(ParameterCollection collection = nul
/// Query parameter
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow().FindAllAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow().FindAllAsync();
///
///
/// The .
@@ -58,9 +58,9 @@ public virtual Task FindAllAsync(ParameterCollection colle
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// WorkflowModel model = new WorkflowModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow().Create(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow().Create(model);
///
///
/// Workflow Model for creating workflow.
@@ -75,9 +75,9 @@ public override ContentstackResponse Create(WorkflowModel model, ParameterCollec
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// WorkflowModel model = new WorkflowModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow().CreateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow().CreateAsync(model);
///
///
/// Workflow Model for creating workflow.
@@ -92,9 +92,9 @@ public override Task CreateAsync(WorkflowModel model, Para
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// WorkflowModel model = new WorkflowModel();
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").Update(model);
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow("").Update(model);
///
///
/// Workflow Model for updating Content Type.
@@ -109,9 +109,9 @@ public override ContentstackResponse Update(WorkflowModel model, ParameterCollec
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// WorkflowModel model = new WorkflowModel();
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").UpdateAsync(model);
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow("").UpdateAsync(model);
///
///
/// Workflow Model for updating Content Type.
@@ -126,8 +126,8 @@ public override Task UpdateAsync(WorkflowModel model, Para
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow("").Fetch();
///
///
/// The .
@@ -141,8 +141,8 @@ public override ContentstackResponse Fetch(ParameterCollection collection = null
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").FetchAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow("").FetchAsync();
///
///
/// The Task.
@@ -156,8 +156,8 @@ public override Task FetchAsync(ParameterCollection collec
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").Delete();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow("").Delete();
///
///
/// The .
@@ -171,8 +171,8 @@ public override ContentstackResponse Delete(ParameterCollection collection = nul
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").DeleteAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow("").DeleteAsync();
///
///
/// The Task.
@@ -186,8 +186,8 @@ public override Task DeleteAsync(ParameterCollection colle
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").Disable();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow("").Disable();
///
///
/// The .
@@ -205,8 +205,8 @@ public virtual ContentstackResponse Disable()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").DisableAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow("").DisableAsync();
///
///
/// The .
@@ -224,8 +224,8 @@ public virtual Task DisableAsync()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").Enable();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow("").Enable();
///
///
/// The .
@@ -243,8 +243,8 @@ public virtual ContentstackResponse Enable()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").EnableAsync();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow("").EnableAsync();
///
///
/// The .
@@ -262,8 +262,8 @@ public virtual Task EnableAsync()
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow().PublishRule("<ENTRY_UID>").Fetch();
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow().PublishRule("").Fetch();
///
///
/// Optional Publish rule uid for performing rule specific operation
@@ -278,8 +278,8 @@ public PublishRule PublishRule(string uid = null)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").GetPublishRule("<CONTENT_TYPE_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = client.Stack("").Workflow("").GetPublishRule("");
///
///
/// The .
@@ -300,8 +300,8 @@ public virtual ContentstackResponse GetPublishRule(string contentType, Parameter
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Workflow("<WORKFLOW_UID>").GetPublishRuleAsync("<CONTENT_TYPE_UID>");
+ /// ContentstackClient client = new ContentstackClient("", "");
+ /// ContentstackResponse contentstackResponse = await client.Stack("").Workflow("").GetPublishRuleAsync("");
///
///
/// The .
diff --git a/Contentstack.Management.Core/Queryable/Query.cs b/Contentstack.Management.Core/Queryable/Query.cs
index 8e5f26a..56ab212 100644
--- a/Contentstack.Management.Core/Queryable/Query.cs
+++ b/Contentstack.Management.Core/Queryable/Query.cs
@@ -32,7 +32,7 @@ internal Query(Stack stack, string resourcePath)
/// Number of object in limit
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentstackResponse contentstackResponse = client.Stack().Query().Limit(5).Find();
///
///
@@ -49,7 +49,7 @@ public Query Limit(double value)
/// Number of object to skip
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentstackResponse contentstackResponse = client.Stack().Query().Skip(5).Find();
///
///
@@ -65,7 +65,7 @@ public Query Skip(double value)
///
///
///
- /// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
+ /// ContentstackClient client = new ContentstackClient("", "");
/// ContentstackResponse contentstackResponse = client.Stack().Query().IncludeCount().Find();
///
///
diff --git a/Contentstack.Management.Core/contentstack.management.core.csproj b/Contentstack.Management.Core/contentstack.management.core.csproj
index f1f29bc..1fd8f92 100644
--- a/Contentstack.Management.Core/contentstack.management.core.csproj
+++ b/Contentstack.Management.Core/contentstack.management.core.csproj
@@ -4,7 +4,7 @@
netstandard2.0;net471;net472;
Contentstack Management
Contentstack
- Copyright © 2012-2024 Contentstack. All Rights Reserved
+ Copyright © 2012-2025 Contentstack. All Rights Reserved
.NET SDK for the Contentstack Content Management API.
Contentstack
contentstack.management.csharp
diff --git a/Directory.Build.props b/Directory.Build.props
index b5e0738..e346ee5 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -1,5 +1,5 @@
- 0.1.11
+ 0.1.12
diff --git a/Scripts/run-test-case.sh b/Scripts/run-test-case.sh
index 871d404..7550df9 100644
--- a/Scripts/run-test-case.sh
+++ b/Scripts/run-test-case.sh
@@ -4,7 +4,7 @@
# Contentstack
#
# Created by Uttam Ukkoji on 12/04/21.
-# Copyright © 2024 Contentstack. All rights reserved.
+# Copyright © 2025 Contentstack. All rights reserved.
echo "Removing files"
diff --git a/Scripts/run-unit-test-case.sh b/Scripts/run-unit-test-case.sh
index d1f34fd..ff14bdc 100644
--- a/Scripts/run-unit-test-case.sh
+++ b/Scripts/run-unit-test-case.sh
@@ -4,7 +4,7 @@
# Contentstack
#
# Created by Uttam Ukkoji on 30/03/2023.
-# Copyright © 2024 Contentstack. All rights reserved.
+# Copyright © 2025 Contentstack. All rights reserved.
echo "Removing files"
rm -rf "./Contentstack.Management.Core.Unit.Tests/TestResults"