{"id":7574,"date":"2022-04-09T12:33:08","date_gmt":"2022-04-09T07:03:08","guid":{"rendered":"https:\/\/www.goseeko.com\/blog\/?p=7574"},"modified":"2022-04-09T12:33:08","modified_gmt":"2022-04-09T07:03:08","slug":"what-is-this-keyword-in-java","status":"publish","type":"post","link":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/","title":{"rendered":"What is This keyword in java ?"},"content":{"rendered":"\n<p>A reference variable in Java is a variable that refers to the current object of a method or constructor. The main use of <a href=\"https:\/\/en.wikipedia.org\/wiki\/List_of_Java_keywords\" target=\"_blank\" rel=\"noreferrer noopener\">this<\/a> term in Java is to distinguish between class attributes and arguments with similar names.<\/p>\n\n\n\n<p>The following are some examples of &#8216;this&#8217; keyword usage:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>This is used to refer to current class instance variables.<\/li><li>It can be used to call or start the constructor of the current class.<\/li><li>It can use as a parameter in a method call.<\/li><li>It&#8217;s possible to send it as an argument to the constructor.<\/li><li>It can be used to get the current instance of a class.<\/li><\/ul>\n\n\n\n<p>This keyword in Java uses in a variety of ways. This is a reference variable in Java that points to the current object.<\/p>\n\n\n\n<p class=\"has-text-align-center\"><img loading=\"lazy\" decoding=\"async\" width=\"316\" height=\"137\" src=\"https:\/\/lh3.googleusercontent.com\/wb-lHoOG-vl-mVFe8u8k_fWQHtFaoO_hp_Oobsorw9_MFDDf2tkOZQzXKkc8o0W1IyE4_cend0sEEq4UwjnI55rg-fSkvtuIukhquKnE7W5kT_BuDX5ezF4lynr5Obgwd_CedFaM\"><\/p>\n\n\n\n<p class=\"has-text-align-center\">Fig : working of this keyword<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Example\u00a0<\/strong>of This keyword<\/h2>\n\n\n\n<p>class Student{&nbsp;&nbsp;<\/p>\n\n\n\n<p>int rollno;&nbsp;&nbsp;<\/p>\n\n\n\n<p>String name;&nbsp;&nbsp;<\/p>\n\n\n\n<p>float fee;&nbsp;&nbsp;<\/p>\n\n\n\n<p>Student(int rollno,String name,float fee){&nbsp;&nbsp;<\/p>\n\n\n\n<p>this.rollno=rollno;&nbsp;&nbsp;<\/p>\n\n\n\n<p>this.name=name;&nbsp;&nbsp;<\/p>\n\n\n\n<p>this.fee=fee;&nbsp;&nbsp;<\/p>\n\n\n\n<p>}&nbsp;&nbsp;<\/p>\n\n\n\n<p>void display(){System.out.println(rollno+&#8221; &#8220;+name+&#8221; &#8220;+fee);}&nbsp;&nbsp;<\/p>\n\n\n\n<p>}&nbsp;&nbsp;<\/p>\n\n\n\n<p>class TestThis2{&nbsp;&nbsp;<\/p>\n\n\n\n<p>public static void main(String args[]){&nbsp;&nbsp;<\/p>\n\n\n\n<p>Student s1=new Student(111,&#8221;ankita&#8221;,6000f);&nbsp;&nbsp;<\/p>\n\n\n\n<p>Student s2=new Student(112,&#8221;sunil&#8221;,9000f);&nbsp;&nbsp;<\/p>\n\n\n\n<p>s1.display();&nbsp;&nbsp;<\/p>\n\n\n\n<p>s2.display();&nbsp;&nbsp;<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>}&nbsp;&nbsp;<\/p>\n\n\n\n<p>Output&nbsp;<\/p>\n\n\n\n<p>111 ankita 6000.0<\/p>\n\n\n\n<p>112 sunil 9000.0<\/p>\n\n\n\n<p><strong>Interested in learning about similar topics? Here are a few hand-picked blogs for you!<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" id=\"block-31e5070e-29b0-4ecb-99c2-fa8e82c79693\"><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-recursion\/\" target=\"_blank\">What is recursion?<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-a-compiler\/\" target=\"_blank\">Describe compiler?<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-programming\/\" target=\"_blank\">What is programming?<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-a-constructor\/\" target=\"_blank\">Explain constructor?<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-object-oriented-programming\/\" target=\"_blank\">What is object-oriented programming?<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>The main use of this term in Java is to distinguish between class attributes and arguments with similar names.<\/p>\n","protected":false},"author":28,"featured_media":6405,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[36],"tags":[],"class_list":["post-7574","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-computer-science-software-engineering-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is This keyword in java ? - Goseeko blog<\/title>\n<meta name=\"description\" content=\"A reference variable in Java is a variable that refers to the current object of a method or constructor. The main use of this keyword in Java is to distinguish between class attributes and arguments with similar names.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is This keyword in java ? - Goseeko blog\" \/>\n<meta property=\"og:description\" content=\"A reference variable in Java is a variable that refers to the current object of a method or constructor. The main use of this keyword in Java is to distinguish between class attributes and arguments with similar names.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/\" \/>\n<meta property=\"og:site_name\" content=\"Goseeko blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/goseeko\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-09T07:03:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"533\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Gunjan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@goseeko\" \/>\n<meta name=\"twitter:site\" content=\"@goseeko\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gunjan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/\"},\"author\":{\"name\":\"Gunjan\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c\"},\"headline\":\"What is This keyword in java ?\",\"datePublished\":\"2022-04-09T07:03:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/\"},\"wordCount\":266,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1\",\"articleSection\":[\"Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/\",\"url\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/\",\"name\":\"What is This keyword in java ? - Goseeko blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1\",\"datePublished\":\"2022-04-09T07:03:08+00:00\",\"description\":\"A reference variable in Java is a variable that refers to the current object of a method or constructor. The main use of this keyword in Java is to distinguish between class attributes and arguments with similar names.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1\",\"width\":800,\"height\":533},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.goseeko.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is This keyword in java ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#website\",\"url\":\"https:\/\/www.goseeko.com\/blog\/\",\"name\":\"Goseeko blog\",\"description\":\"Learning beyond college, Students platform for life skills.\",\"publisher\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.goseeko.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\",\"name\":\"Goseeko.com\",\"url\":\"https:\/\/www.goseeko.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1\",\"contentUrl\":\"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1\",\"width\":2471,\"height\":2471,\"caption\":\"Goseeko.com\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/goseeko\",\"https:\/\/x.com\/goseeko\",\"https:\/\/www.instagram.com\/goseeko\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c\",\"name\":\"Gunjan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g\",\"caption\":\"Gunjan\"},\"url\":\"https:\/\/www.goseeko.com\/blog\/author\/gunjangoseeko\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is This keyword in java ? - Goseeko blog","description":"A reference variable in Java is a variable that refers to the current object of a method or constructor. The main use of this keyword in Java is to distinguish between class attributes and arguments with similar names.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/","og_locale":"en_US","og_type":"article","og_title":"What is This keyword in java ? - Goseeko blog","og_description":"A reference variable in Java is a variable that refers to the current object of a method or constructor. The main use of this keyword in Java is to distinguish between class attributes and arguments with similar names.","og_url":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/","og_site_name":"Goseeko blog","article_publisher":"https:\/\/www.facebook.com\/goseeko","article_published_time":"2022-04-09T07:03:08+00:00","og_image":[{"width":800,"height":533,"url":"https:\/\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg","type":"image\/jpeg"}],"author":"Gunjan","twitter_card":"summary_large_image","twitter_creator":"@goseeko","twitter_site":"@goseeko","twitter_misc":{"Written by":"Gunjan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#article","isPartOf":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/"},"author":{"name":"Gunjan","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c"},"headline":"What is This keyword in java ?","datePublished":"2022-04-09T07:03:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/"},"wordCount":266,"commentCount":0,"publisher":{"@id":"https:\/\/www.goseeko.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","articleSection":["Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/","url":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/","name":"What is This keyword in java ? - Goseeko blog","isPartOf":{"@id":"https:\/\/www.goseeko.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#primaryimage"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","datePublished":"2022-04-09T07:03:08+00:00","description":"A reference variable in Java is a variable that refers to the current object of a method or constructor. The main use of this keyword in Java is to distinguish between class attributes and arguments with similar names.","breadcrumb":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#primaryimage","url":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","width":800,"height":533},{"@type":"BreadcrumbList","@id":"https:\/\/www.goseeko.com\/blog\/what-is-this-keyword-in-java\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.goseeko.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What is This keyword in java ?"}]},{"@type":"WebSite","@id":"https:\/\/www.goseeko.com\/blog\/#website","url":"https:\/\/www.goseeko.com\/blog\/","name":"Goseeko blog","description":"Learning beyond college, Students platform for life skills.","publisher":{"@id":"https:\/\/www.goseeko.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.goseeko.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.goseeko.com\/blog\/#organization","name":"Goseeko.com","url":"https:\/\/www.goseeko.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1","contentUrl":"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1","width":2471,"height":2471,"caption":"Goseeko.com"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/goseeko","https:\/\/x.com\/goseeko","https:\/\/www.instagram.com\/goseeko\/"]},{"@type":"Person","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c","name":"Gunjan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g","caption":"Gunjan"},"url":"https:\/\/www.goseeko.com\/blog\/author\/gunjangoseeko\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/7574","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/comments?post=7574"}],"version-history":[{"count":1,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/7574\/revisions"}],"predecessor-version":[{"id":7575,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/7574\/revisions\/7575"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/media\/6405"}],"wp:attachment":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/media?parent=7574"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/categories?post=7574"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/tags?post=7574"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}